AlsoMigrate =========== Migrate multiple tables with similar schema. Requirements ------------
sudo gem install also_migrateDefine the model ----------------
class Article < ActiveRecord::Base also_migrate :article_archives, :ignore => 'moved_at', :indexes => 'id' endOptions: *
: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
.