Matthew Peveler

Results 298 comments of Matthew Peveler

Could you include the migrations that is causing the error for you?

Thanks for including the migration. Should be fixed for the next release. 😃

Yeah, version should be treated as a float consistently throughout the system to avoid these issues. Given there's never any math involved, should not be affected by anything to do...

Unfortunately nette/finder does not support all of glob like the `{ }` modifier, and so would lose ability to handle this case from the docs: ```yaml paths: migrations: '%%PHINX_CONFIG_DIR%%/module/*/{data,scripts}/migrations' ```...

@dereuromark I can confirm that this is a problem and I'd like to make a patch to fix it using the [`Phinx\Util\Literal`](https://github.com/cakephp/phinx/blob/master/src/Phinx/Util/Literal.php) class that solves this problem for column creation....

Looking into this now. The behavior of the data providers is the same if you specify both precision and scale, or just precision (scale defaults to 0). If you specify...

You could try the `--dry-run` flag to see a print of all create commands that get run to see if any are missing the encoding / collation arguments?

I would think that after this implemention, one might reasonably expect that the table options could be configured in a similar way, which would lead to ambiguous behavior with the...

Both tables and columns have a handful of similar options, for example, both tables and columns can have comments. So then what `->comment('foo')` would refer to becomes ambiguous. You could...