You can do it manually, something like the following:
class AddNewFieldToYourTable < ActiveRecord::Migration def self.up change_table(:your_tables) do |t| t.string :new_field end change_table(:your_table_translations) do |t| t.string :new_field end end def self.down remove_column :your_tables, :new_field remove_column :your_table_translations, :new_field end end
user630522
source share