phinx
phinx copied to clipboard
PHP Database Migrations for Everyone
Consider if want to change length of a nullable column. using `['length' => MysqlAdapter::INT_TINY]` make the column `not null`. I have to specify `'null'=>true]` options to prevent that. I think...
I think it'd be a useful feature to have phinx create the databases for testing, and development at least, if they are not already there. @robmorgan thoughts?
Hi, It would be a nice feature to have a custom seed base option in the configuration file. Let me know if it's doable!
Under the [Inserting Data](https://book.cakephp.org/phinx/0/en/migrations.html#inserting-data) heading, there's a yellow warning: "You cannot use the insert methods inside a change() method. Please use the up() and down() methods." But just above on...