blob: eeb5afe4a6e76f87f2c6546496dcfd4d033d669a (
plain)
1
2
3
4
5
6
7
8
9
|
class RemoveSipDomainIdFromSipAccount < ActiveRecord::Migration
def up
remove_column :sip_accounts, :sip_domain_id
end
def down
add_column :sip_accounts, :sip_domain_id, :integer
end
end
|