summaryrefslogtreecommitdiff
path: root/db/migrate/20130326064557_create_voicemail_settings.rb
blob: 45b65733b546ccb06f6d0a9a622f5ca05f595742 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class CreateVoicemailSettings < ActiveRecord::Migration
  def self.up
    create_table :voicemail_settings do |t|
      t.integer :voicemail_account_id
      t.string :name 
      t.string :value
      t.string :class_type
      t.string :description
      t.timestamps
    end
  end

  def self.down
    drop_table :voicemail_settings
  end
end