|
|
|
|
|
by dschwartz88
4389 days ago
|
|
Another one of the engineers here. While using ActiveRecord migrations will work for production systems, when setting up development or test systems using rake db:schema:load will not actually insert those records. Since rake db:schema:load is simply loading the current schema from schema.rb, you will still have to add those records into seeds. |
|
It actually works quite well. The tradeoff being that it may take a little longer, but we're typically talking tenths of a second.