phinx icon indicating copy to clipboard operation
phinx copied to clipboard

PHP Database Migrations for Everyone

Results 164 phinx issues
Sort by recently updated
recently updated
newest added

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...

bug

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?

feature

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...

docs