यदि आपका config/database.yml स्कीमा के साथ MySQL डेटाबेस को संदर्भित कर रहा है, तो करें
rake db:schema:dump
यह एक db/schema.rb फ़ाइल बनाएगा जो डेटाबेस से स्वतंत्र है।
schema.rb को 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