Skip to content

Tags: cakephp/phinx

Tags

0.16.2

Toggle 0.16.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Mark password as a SensitiveParameter (#2295)

0.16.1

Toggle 0.16.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Update docs for 0.16.x (#2279)

0.16.0

Toggle 0.16.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request #2262 from cakephp/MasterOdin-patch-1

Reword null option description

0.15.5

Toggle 0.15.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add Symfony 7 support (#2246)

* Add Symfony 7 support

* Upgrade console too

* Update compatibility with symfony/console

0.15.4

Toggle 0.15.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request #2243 from cakephp/dereuromark-patch-1

Use UUID_BLOB for binary16

0.15.3

Toggle 0.15.3's commit message
Make local prefer lowest checking easier.

0.15.2

Toggle 0.15.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request #2224 from cakephp/table-nullable-type

Allow Table::addColumn() to use type from Column object again

0.15.1

Toggle 0.15.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Ensure PostgresAdapter::useIdentity is always initialized (#2223)

0.15.0

Toggle 0.15.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add declare strict_types to seed template (#2220)

0.14.0

Toggle 0.14.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix 2193 Postgres GENERATED ALWAYS (#2195)

* Update the postgres generated clause to GENERATED BY DEFAULT to allow database seeding.

* Copied insert statements from PdoAdapter and updated to include OVERRIDING SYSTEM VALUE to allow database seeding when a column was created with GENERATED ALWAYS.

* Update PostgresAdapter unit tests with expected output.

* Update PostgresAdapter unit tests with default generated clause.

* Only override system value if Postgres version is greater than or equal to 10.

* Add checks for Postgres version and coding standard fix.

* Another Postgres version check.