Created
February 18, 2020 12:21
-
-
Save d1i1m1o1n/85996f9bb7ff6d422bc1aee7d5243960 to your computer and use it in GitHub Desktop.
Migrate a database with seeds using Laravel
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
rm -f database/migrations/*.php || echo OK | |
cp database/migrations/m/*.php database/migrations/ | |
php artisan migrate:refresh | |
php artisan db:seed | |
rm -f database/migrations/*.php || echo OK |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment