Skip to content

Instantly share code, notes, and snippets.

@d1i1m1o1n
Created February 18, 2020 12:21
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save d1i1m1o1n/85996f9bb7ff6d422bc1aee7d5243960 to your computer and use it in GitHub Desktop.
Migrate a database with seeds using Laravel
#!/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