mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 23:45:10 +00:00
Database in the right spot.
This commit is contained in:
@@ -48,7 +48,7 @@ return [
|
||||
|
||||
'sqlite' => [
|
||||
'driver' => 'sqlite',
|
||||
'database' => storage_path().'/database.sqlite',
|
||||
'database' => realpath(__DIR__ . '/../tests/_data/db.sqlite'),
|
||||
'prefix' => '',
|
||||
],
|
||||
|
||||
|
@@ -1,5 +1,6 @@
|
||||
#!/bin/bash
|
||||
touch tests/_data/db.sqlite
|
||||
php artisan env
|
||||
php artisan migrate --seed
|
||||
sqlite3 tests/_data/db.sqlite .dump > tests/_data/dump.sql
|
||||
exit 0
|
Reference in New Issue
Block a user