Looking to hire Laravel developers? Try LaraJobs
This package is not available.

laravel-pgsql-extends maintained by xujif

Description
extends pgsql supports of laravel
Author
Last update
2017/01/04 03:44 (dev-master)
License
Links
Downloads
383

Comments
comments powered by Disqus

#Laravel Postgresql schama extends

####usage:

 Schema::create('table', function (Blueprint $table) {
    $table->increments('id');
    $table->jsonb('fields');
    $table->circle('fields');
    $table->textArray('fieldsOfArray'); //type of text[]
    $table->integerArray('integerArray'); //type of text[]
});

##supprts types

        'json',
        'hstore',
        'uuid',
        'jsonb',
        'ipAddress',
        'netmask',
        'macAddress',
        'point',
        'line',
        'lineSegment',
        'path',
        'box',
        'polygon',
        'circle',
        'money',
        'int4range',
        'int8range',
        'numrange',
        'tsrange',
        'tstzrange',
        'daterange',
        'tsvector',