summaryrefslogtreecommitdiff
path: root/db/migrate/20111009202027_create_phone_numbers.rb
blob: a7d15b46f531be3d1b55dd8b3bd29e56db03b15e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
class CreatePhoneNumbers < ActiveRecord::Migration
  def self.up
    create_table :phone_numbers do |t|
      t.integer :phone_book_id
      t.string :name
      t.string :number
      t.string :country_code
      t.string :area_code
      t.string :subscriber_number
      t.string :extension
      t.integer :position
      t.timestamps
    end
  end

  def self.down
    drop_table :phone_numbers
  end
end