AlsoMigrate =========== Migrate multiple tables with similar schema. Requirements ------------
sudo gem install also_migrate
Define the model ----------------
class Article < ActiveRecord::Base
  also_migrate :article_archives, :ignore => 'moved_at', :indexes => 'id'
end
Options: * :ignore Ignore migrations that apply to certain columns (defaults to none) * :indexes Only index certain columns (defaults to all) That's it! ---------- Next time you migrate, article_archives is created if it doesn't exist. Any new migration applied to articles is automatically applied to article_archives.