First tests for User model.

This commit is contained in:
James Cole
2014-07-03 09:43:12 +02:00
parent 924ec29eaf
commit 3d1bc5891f
4 changed files with 82 additions and 3 deletions

View File

@@ -0,0 +1,11 @@
<?php
return [
'default' => 'sqlite',
'connections' => [
'sqlite' => [
'driver' => 'sqlite',
'database' => ':memory:',
'prefix' => ''
],
]
];