Commit 6a60365fedffda4ee51e6f717c2b8a57da8f315a
1 parent
a136247f
Exists in
master
and in
4 other branches
little fixes
Showing
1 changed file
with
3 additions
and
2 deletions
Show diff stats
install.rb
| ... | ... | @@ -20,9 +20,10 @@ if env == "production" |
| 20 | 20 | else |
| 21 | 21 | `bundle install` |
| 22 | 22 | end |
| 23 | - | |
| 23 | + | |
| 24 | 24 | # migrate db |
| 25 | -`bundle exec rake db:setup RAILS_ENV=#{env}` | |
| 25 | +`bundle exec rake db:create RAILS_ENV=#{env}` | |
| 26 | +`bundle exec rake db:schema:load RAILS_ENV=#{env}` | |
| 26 | 27 | `bundle exec rake db:seed_fu RAILS_ENV=#{env}` |
| 27 | 28 | |
| 28 | 29 | puts green %q[ | ... | ... |