Matthew Peveler

Results 298 comments of Matthew Peveler

For reference, if you want to use a type that phinx does not support, you can do it by using a `Phinx\Util\Literal`, like so: ```php $this->table('users') ->addColumn('username', Literal::from('daterange')) ->create(); ```...

To address https://github.com/cakephp/migrations/issues/651 and this issue, we'd need to backport #2242 to v0.13. There is also the changes to `getQueryBuilder` from 37307f8189b1ed307c4bd00235190b1a984c49e2 that might be useful (though make it optional...

Biggest reason would be to help cakephp/migrations@v3 users, but if you don't think you'd want those methods in phinx proper for that (or fine with just having those users be...

This would probably be something I'd add to the v2 of the APIs as that information definitely wouldn't be used by the extension and the current API sets up the...

Well, it'd be a full fledged website, but I think I can parse quite a bit of this while I'm scrapping. The extension would then just use the information it...

Sorry about that @kevinoid. Master has been fixed and tests are passing once again.

Closing this in favor of #421

This would be to decrease the load on dotaprj as the response will be the same in a 15 minute window. So, let's say I open d2mt to get a...

When you visit a page, most modern browsers try and bring up cached results if you've just been browsing the page to save time/memory in loading. But this isn't for...

The issue seems to be that the `WebpackBar` plugin is always included and that's what's causing that output: https://github.com/laravel-mix/laravel-mix/blob/b116bf064a7aa60dcc05cc9a03edbe9eb3a3ae2f/src/builder/webpack-plugins.js#L52-L54 At the current moment, I guess the way to do this...