2017 © Pedro Peláez
 

library laravel-postgresql-inherit

Add inheritance in postgresql tables

image

jumper423/laravel-postgresql-inherit

Add inheritance in postgresql tables

  • Thursday, June 16, 2016
  • by jumper423
  • Repository
  • 1 Watchers
  • 3 Stars
  • 42 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 4 Forks
  • 0 Open issues
  • 4 Versions
  • 0 % Grown

The README.md

PostgresqlSchema

Software License, (*1)

Add inheritance in postgresql tables, (*2)

Installation

PHP 5.4+ and Laravel 5.2+ are required., (*3)

To get the latest version of PostgreSQL Schema, simply require "jumper423/laravel-postgresql-inherit": "2.*" in your composer.json file. You'll then need to run composer install or composer update to download it and have the autoloader updated., (*4)

Once PostgreSQL Schema is installed, you need to register the service provider. Open up app/config/app.php and add the following to the providers key., (*5)

  • 'ThibaudDauce\PostgresqlSchema\PostgresqlSchemaServiceProvider'

Usage

In migration file when using a postgresql database, you can use the new method addInheritedTable:, (*6)

<?php

Schema::create('test', function(Blueprint $table) {

  $table->increments('id');
  $table->addInheritedTable('users');
});

The Versions

16/06 2016

dev-master

9999999-dev

Add inheritance in postgresql tables

  Sources   Download

MIT

The Requires

 

The Development Requires

by Pasechnik Vlad

database laravel migrations postgres inheritance postresql

16/06 2016

2.1

2.1.0.0

Add inheritance in postgresql tables

  Sources   Download

MIT

The Requires

 

The Development Requires

by Pasechnik Vlad

database laravel migrations postgres inheritance postresql

16/06 2016

2.0

2.0.0.0

Add inheritance in postgresql tables

  Sources   Download

MIT

The Requires

 

The Development Requires

by Pasechnik Vlad

database laravel migrations postgres inheritance postresql

31/07 2014

v1.0

1.0.0.0

Add inheritance in postgresql tables

  Sources   Download

MIT

The Requires

 

The Development Requires

database laravel migrations postgres inheritance postresql