Matthew Peveler
Matthew Peveler
Is the MySQL limitation mentioned anywhere within the docs? Might be good to add? Maybe add a "Database Limitations" section under `Writing Migrations`? Could be a good place to document...
I can do that.
You would do: ```php 'paths' => [ 'migrations' => [ 'Foo\\Test' => '%%PHINX_CONFIG_DIR%%/db/migrations' ], 'seeds' => [ 'Foo\\Bar' => '%%PHINX_CONFIG_DIR%%/db/seeds' ] ], ``` where the key is the namespace and...
No, and I agree it should be. The above is as much a note to myself as anyone else who wants to update the docs as it is an immediate...
@dereuromark I thought that https://github.com/cakephp/migrations/pull/517 would need to be merged before releasing 0.13, but I'm not sure the status of that PR.
I do plan to finish this up with the caveat of disabling it for renaming or dropping columns as those requiring potentially rewriting the trigger or index. I figure it's...
This is not yet ready for release (as evidenced by the broken tests), and I have not had time to come back to this yet. We should not have this...
@ndm2 Do you think the PR is ready to merge now? Given that all existing tests are passing, and two new tests added for coverage on this, I think should...
This follows the official method for doing these kinds of operations as described in the [sqlite docs](https://sqlite.org/lang_altertable.html#otheralter), so I'm not particularly concerned on getting invalid SQL from the `sqlite_master` table,...
Phinx doesn't natively support views, and I'm not sure what sqlite (or other DBs) do if you drop a table that a view references. In theory, with a SQL statement...