Pokud váš config/database.yml odkazuje na databázi MySQL se schématem, proveďte
rake db:schema:dump
Tím se vytvoří soubor db/schema.rb, který je nezávislý na databázi.
Zkopírujte schema.rb do 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