phoenixgao/laravel-postgres-extended-schema

Laravel database schema extended, added some PostgreSql features

0.15 2016-01-26 10:42 UTC

This package is auto-updated.

Last update: 2024-04-10 18:20:29 UTC


README

Latest Version on Packagist Software License Build Status Coverage Status Quality Score Total Downloads

SensioLabsInsight

Forked from Bosnadev's original work https://github.com/Bosnadev/Database

Installation

$ composer require phoenixgao/laravel-postgres-extended-schema

Usage

Add our service provider into config/app.php:

<?php
    ...
    'providers' => [
        ...
        Bosnadev\Database\DatabaseServiceProvider::class,
    ],
    ...

This library extends PostgreSQL driver for Laravel 5 with support for:

Additional PostgreSQL data types:

  • hstore
  • uuid
  • geometric types (point, path, circle, line, polygon...)
  • network address types

Table Inheritance