Releases: umbrellio/laravel-pg-extensions
Releases · umbrellio/laravel-pg-extensions
Beta (PostgresConnection register services)
2.2.2.1 linter fixes
2.2.4
Fix connection error
Merge pull request #18 from umbrellio/bug/connections Fix a bug with a connection refused error to the database after calling composer install.
Connection Refused fixes
Merge pull request #17 from umbrellio/bug/connections Fix a bug with a connection refused error to the database after calling composer install.
Fix errors in postAutoloadDump (composer)
Fixing an error with access to a private property (#16) Fixing an error with access to a private property in UmbrellioPostgresProvider
Add new features
Add support unique indexes with where to Blueprint
Feature/unique wheres (#5) Extending creating unique indexes with conditions on where, example: ``` Schema::create('cities', static function (Blueprint $table) { ... $table->uniquePartial(['name', 'author_id']) ->where('editor_id', 1) ->whereRaw('field1 = ? and field2 <= ?', ['field1', 'field2']) ->whereNotNull('deleted_at') ->whereBetween('author_id', [1, 2, 3]); ... ``` PS. If you will use $table->uniquePartial() without extend methods after call uniquePartial(), it works as $table->unique().
Like refactoring
refactor components (#2) Summary: - refactoring - travis ci fixes - use extending instead macros Link: https://github.com/umbrellio/laravel-pg-extensions/pull/2