I have database scripts which create database with more than 100 tables and lot of data. It is a tedious task for me to create Rails Migration classes for whole database. But i see Rails Migration as a good option in long term database change management. Please suggest some way to generate Rails Migrate classes automatically from MYSQL database instance.
|
feedback
|
|
This can be done in three simple steps:
class CreateMigration < ActiveRecord::Migration
def self.up
# insert schema.rb here
end
def self.down
# drop all the tables if you really need
# to support migration back to version 0
end
end
| |||||
feedback
|
|
Take a look at Sequel. Its a Ruby library that does all the same things but without tethering you to Rails/ActiveRecord. It might be just what you need if you are thinking really long term. | |||
|
feedback
|