mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-31 19:27:51 -06:00
5 lines
146 B
Bash
Executable File
5 lines
146 B
Bash
Executable File
#!/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 |