Matthias Wirtz

Results 164 comments of Matthias Wirtz

> This needs to be rebased. Yes, Happy to do that once #507 is merged / decided and 2.x-next Up to date or 3.x ist existing

done - it's still containing the commit of #507

@terrylinooo sorry for pushing but it would be super great to get the support for custom post types merged and a new version released - any thoughts from your side?

The prefix does not need to be configured, it's automatically running this in tests/bootstrap.php ```php $migrator = new Migrator(['outputLevel' => ConsoleIo::VERBOSE]); $migrator->run([['connection' => 'test'], ['plugin' => 'AuditStash', 'connection' => 'test']]);...

ah! it is caused by running sqlite tests in memory app/local.php ```php 'test' => [ 'host' => null, //'port' => 'non_standard_port_number', 'username' => '', 'password' => '', 'database' => ':memory:',...

I see - running tests in memory via sqlite locally while against prod env. database in ci/cd only was a great developer experience as it was superfast (10 seconds (inmemory)...

just want to leave this here as it seems that sqlite supports sharing the same in memory database between multiple connections - it's just not implemented in php at the...

@othercorey with the latest changes setting the test database to run in memory is no longer working for me. everything runs fine when using a sqlite file as database but...