Use local db instead of constant migrating.

This commit is contained in:
James Cole
2015-04-20 22:08:24 +02:00
parent 54125c05d3
commit 44056629e8
4 changed files with 82 additions and 70 deletions

View File

@@ -48,7 +48,7 @@ return [
'sqlite' => [
'driver' => 'sqlite',
'database' => ':memory:',
'database' => __DIR__.'/../storage/database/testing.db',
'prefix' => '',
],