Martin Seysen

Results 2 issues of Martin Seysen

The documentation says to use the following code when deleting a table: ```php $this->table('table')->drop()->save(); ``` https://book.cakephp.org/phinx/0/en/migrations.html#dropping-a-table But in my opinion it's better using: ```php $this->table('table')->drop()->update(); ``` ...because if the table...

I upgraded from tag 4.7.16 to 4.11.1 and realized, that there is a new option in the `CleanUnusedComponents` processor. Formerly it was always on and we used it at any...

bug
enhancement
question