-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
What rake db tasks should we use in travis? #29
Comments
I do not have a preference. Logically I don't think seed should be used on travis builds. |
Loading the schema is much faster than migrating as migrating rebuilds the schema from scratch and loads it into the db while So my preference is:
|
@motasem-salem for the travils file I say drop bundle exec rake db:seed and have bundle exec rake db:create:all |
rake db:create # Travis doesn't need ':all', right?
rake db:schema:load |
I think we have an agreement here. I'll use
and I will close this question. |
In
.travis.yml
, should we use:or
or
Original discussion: #24 (diff)
The text was updated successfully, but these errors were encountered: