eltonlk/laravel-pg-schemas

Laravel package for managing postgres schemas.
99 2
Install
composer require eltonlk/laravel-pg-schemas
PHP:>=5.4.0
License:MIT
Last Updated:Jul 24, 2014
Links: GitHub  ·  Packagist
Maintainer: eltonlk

Laravel PGSchema

Code Climate

With this package you can create, switch and drop postgres schemas.

Installation

Add the following to your composer.json:

"eltonlk/laravel-pg-schemas": "dev-master"

Add to your app.php file in the services providers section.

'providers' => array(
    ...

    'Eltonlk\LaravelPgSchemas\LaravelPgSchemasServiceProvider'
)

Usage

Assuming that you have your db configuration ready, meaning that your default connection is 'pgsql' and your pgsql credentials are setted in the usual way, you can use the next functions:

Create new Schema

PGSchema::create($schemaName);

Switch to Schema

if switchTo is call without arguments, it switches to the public schema (default)

PGSchema::switchTo($schemaName);

Drop Schema

PGSchema::drop($schemaName);

Migrate Schema

PGSchema::migrate($schemaName);

You can also tell which database connection.

PGSchema::migrate($schemaName, ['--database' => 'pgsql2']);

Related Packages

pacuna/schemas

Laravel package for managing postgresql schemas

65,940 41
guissilveira/laravel-pgsql-multi-tenant-migrate

Laravel Artisan command to migrate postgres multi tentant

188 1
asmiarowski/laravel-postgres

Eloquent support for postgreSQL fields

38,323 15
racklin/pgschema

postgresql schemas for laravel 5

5,973 22