micro-blogger/rebuild-dev-db.sh

15 lines
190 B
Bash
Raw Normal View History

2018-11-10 10:40:22 -06:00
#!/bin/bash
RAILS_ENV=development \
bundle exec rake \
db:drop \
db:create \
db:migrate \
db:fixtures:load \
RAILS_ENV=test \
bundle exec rake \
db:migrate \
db:fixtures:load