mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-05 21:53:08 -06:00
5 lines
140 B
Bash
5 lines
140 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
|