Nếu config / database.yml của bạn đang tham chiếu đến cơ sở dữ liệu MySQL với lược đồ, thì hãy thực hiện
rake db:schema:dump
Điều đó sẽ tạo tệp db / schema.rb độc lập với cơ sở dữ liệu.
Sao chép schema.rb vào db / migrate / 001_original_schema.rb:
class OriginalDatabaseMigration < ActiveRecord::Migration
def self.up
# schema.rb here
end
def self.down
# drop all the tables
end
end