blob: 427dba0ded00ff371777d8bd944c73a2368daf8c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
class CreatePagerGroupDestinations < ActiveRecord::Migration
def self.up
create_table :pager_group_destinations do |t|
t.integer :pager_group_id
t.integer :sip_account_id
t.timestamps
end
end
def self.down
drop_table :pager_group_destinations
end
end
|