rishi-ramawat / laravel-postgresql-inherit
Add inheritance in postgresql tables
Installs: 26 105
Dependents: 0
Suggesters: 0
Security: 0
Stars: 6
Watchers: 0
Forks: 11
Open Issues: 2
Requires
- php: >=5.4.0
- illuminate/database: ~5.4
- illuminate/support: ~5.4
Requires (Dev)
- mockery/mockery: ~0.9
- phpunit/phpunit: ^5.7
This package is not auto-updated.
Last update: 2024-11-09 20:45:28 UTC
README
Add inheritance in postgresql tables
Installation
PHP 5.4+ and Laravel 5.2+ are required.
For Laravel Versions 5.2.* & 5.3.*, run the following command to install this package via composer
composer require "rishi-ramawat/laravel-postgresql-inherit ~2.1.0"
For Laravel Versions 5.4+, run the following command to install this package via composer
composer require "rishi-ramawat/laravel-postgresql-inherit ~2.2"
Once PostgreSQL Schema is installed, you need to register the service provider. Open up config/app.php
and add the following to the providers
array.
RishiRamawat\PostgresSchema\PostgresqlSchemaServiceProvider::class,
Usage
In migration file when using a postgresql database, you can use the new method inherits()
:
Schema::create('cities', function(Blueprint $table) { $table->increments('id'); $table->string('name'); $table->double('population'); $table->integer('altitude')->comment('In Feet'); }); Schema::create('capitals', function(Blueprint $table) { $table->string('state'); // Make capitals table inherits all the columns of its parent table, cities $table->inherits('cities'); });