mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-12-18 20:38:57 +00:00
5 lines
146 B
Bash
5 lines
146 B
Bash
|
|
#!/bin/bash
|
||
|
|
touch tests/_data/db.sqlite
|
||
|
|
php artisan migrate --seed --env=testing
|
||
|
|
sqlite3 tests/_data/db.sqlite .dump > tests/_data/dump.sql
|
||
|
|
exit 0
|