phinx
phinx copied to clipboard
PHP Database Migrations for Everyone
Hi. My site stopped working because I have a `env` function to return environment variables and I just realized this library use CakePHP, that defines another `env` function before, so...
Hi, a quote from [the docs that describe the change() method](http://docs.phinx.org/en/latest/migrations.html#the-change-method) (scroll down a little bit after clicking the link): > If a command cannot be reversed then Phinx will...
The change() method is a super convenient way to write reversible migrations, but its limited capabilities require going to up()/down() too often, even for seemingly small and easily reversible changes....
I believe I've found an undocumented way to correctly set the `float(scale,precision)` column type for MySQL using Phinx, but before I make a PR to add it to the documentation,...
According to MS's documentation for SQL Server 2017, `ntext` and `text` are deprecated and pending removal. It has been official guidance to use `varchar(max)` and `nvarchar(max)` for years instead of...
When an SQL error or any other exception occurs during the migration, the database remains in an intermediary state and - can not be migrated as the migration is partially...
Hi, I'm tryin to migrate some of my projects to Phinx (its great!), but I cannot complete the migration because Phinx don't support ENUM column types on PostgreSQL adapter... Are...
Hi, when changing a column, e.g. a new comment, default value or nullable yes/no we currently have to set all the attributes of the column. Is there a way that...
Consider https://github.com/cakephp/migrations/pull/482 for phinx itself We should probably ignore those CS issues here until the namespace topic is resolved This makes it possible to have the migration files also in...
In normal usage it feels like I've added `-v` to all commands, as Phinx always prints lines about the config file, file format, paths, etc. I would suggest to bump...