1 2 3 4 5 6 7 8 9
class RemoveStateFromSipAccount < ActiveRecord::Migration def up remove_column :sip_accounts, :state end def down add_column :sip_accounts, :state, :string end end