firefly-iii/app/config/testing/database.php

12 lines
227 B
PHP
Raw Normal View History

2014-07-03 02:43:12 -05:00
<?php
return [
'default' => 'sqlite',
'connections' => [
'sqlite' => [
'driver' => 'sqlite',
'database' => 'tests/_data/testing.sqlite',
2014-07-03 02:43:12 -05:00
'prefix' => ''
]
2014-07-03 02:43:12 -05:00
]
];