summaryrefslogtreecommitdiff
path: root/db/migrate/20111211184853_remove_state_from_sip_account.rb
blob: e0ed8ed3f94e513b2654214e0899ed2ae24f8546 (plain)
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