summaryrefslogtreecommitdiff
path: root/db/migrate/20130603150455_create_pager_groups.rb
blob: c8b2e46fbeb541c3b4a771b25e5f54248d8dd36d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class CreatePagerGroups < ActiveRecord::Migration
  def self.up
    create_table :pager_groups do |t|
      t.integer :sip_account_id
      t.string :callback_url
      t.timestamps
    end
  end

  def self.down
    drop_table :pager_groups
  end
end