Skip to content

Releases: umbrellio/laravel-pg-extensions

Beta (PostgresConnection register services)

17 Jul 09:36
Compare
Choose a tag to compare

2.2.4

17 Jul 09:59
Compare
Choose a tag to compare
fix readme

Fix connection error

16 Jul 20:00
c7275a7
Compare
Choose a tag to compare
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

16 Jul 19:42
d2a19b2
Compare
Choose a tag to compare
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)

16 Jul 11:44
Compare
Choose a tag to compare
Fixing an error with access to a private property (#16)

Fixing an error with access to a private property in UmbrellioPostgresProvider

Add new features

15 Jul 20:54
Compare
Choose a tag to compare

Add support unique indexes with where to Blueprint

09 Jul 14:07
Compare
Choose a tag to compare
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

03 Jul 15:12
Compare
Choose a tag to compare
refactor components (#2)

Summary:
- refactoring
- travis ci fixes
- use extending instead macros

Link: https://github.com/umbrellio/laravel-pg-extensions/pull/2

1.0.0

02 Jul 16:03
Compare
Choose a tag to compare
Readme and license