I have a rails app that I'm moving to another server and I figure I should use db:schema:load to create the mysql database because it's recommended. My problem is that I'm using capistrano to deploy and it seems to be defaulting to rake db:migrate instead. Is there a way to change this or is capistrano using db:migrate for a good reason?
|
Why to use db:schema:loadI find that my own migrations eventually do some shuffling of data (suppose I combine first_name and last_name columns into a full_name column, for instance). As soon as I do any of this, I start using ActiveRecord to sift through database records, and your models eventually make assumptions about certain columns. My "Person" table, for instance, was later given a "position" column by which people are sorted. Earlier migrations now fail to select data, because the "position" column doesn't exist yet. How to change the default behavior in CapistranoIn conclusion, I believe deploy:cold should use
I overrode the task in my deploy.rb as follows.
|
|||||||
|
|
That's a great answer from Andres Jaan Tack. I just wanted to add a few comments. Firstly, here's an improved version of Andres'
I have submitted a feature request to have |
|||||||
|
|
Climbing up on the shoulders of Andres Jaan Tack, Adam Spiers, and Kamiel Wanrooij, I've built the following task to overwrite deploy:cold.
My enhancements here are...
|
|||
|
|
|
To create the new database use rake db:create, also if db:migrate is working already for you, then there isn't really a reason to change to db:schema:load. db:schema:load is a faster, but unless you are running thousands of migrations the actual wall clock time difference is minimal. |
|||||
|