Skip to content

Releases: cakephp/migrations

CakePHP Migrations 3.9.0

22 Sep 08:41
58446fd
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 3.8.3...3.9.0

CakePHP Migrations 3.8.3

14 Sep 18:19
5fad3fe
Compare
Choose a tag to compare

What's Changed

Full Changelog: 3.8.2...3.8.3

CakePHP Migrations 4.0.1

10 Sep 04:16
Compare
Choose a tag to compare
  • Update dependencies to stable versions.

Full Changelog: 4.0.0...4.0.1

CakePHP Migrations 4.0.0

10 Sep 03:26
1866242
Compare
Choose a tag to compare

What's Changed

Full Changelog: 3.8.2...4.0.0

CakePHP Migrations 3.8.2

12 Jun 01:40
1c7c060
Compare
Choose a tag to compare

What's Changed

Full Changelog: 3.8.1...3.8.2

CakePHP Migrations 3.8.1

04 May 15:21
f30c575
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 3.8.0...3.8.1

Migrations 3.8.0

31 Mar 02:56
8eaf51d
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 3.7.2...3.8.0

Migrations 3.7.2

12 Jan 15:41
97dfc6b
Compare
Choose a tag to compare

Fixes

Full Changelog: 3.7.1...3.7.2

3.7.1

12 Dec 10:18
bbe44b6
Compare
Choose a tag to compare

Fixes

  • Fixed regression on Seed folder generation, partially reverts #584 by @challgren in #597

New Contributors

Full Changelog: 3.7.0...3.7.1

3.7.0

09 Dec 18:33
3656173
Compare
Choose a tag to compare

Improvements

  • Fixed up Migrations for Phinx 0.13 integration.
    The migration bake templates needed adjustement in regards to param/return types

BC impact: Since Phinx 0.13 foreign key columns are expected to be specified with "signed" => false. Make sure to update your table columns here if you are using any constraints here with 0.13+.
You can also use 3.7.2+ which keeps BC with previous behavior.

Note: Make sure you updated your migration files in your project to contain all return types for methods before applying this update.

Seed classes:

-        public function run()
+        public function run(): void

Migration classes:

-        public function change()
+        public function change(): void

Same for up()/down() if in use.

Full Changelog: 3.6.1...3.7.0