diff options
Diffstat (limited to 'db/migrate/20111009202027_create_phone_numbers.rb')
-rw-r--r-- | db/migrate/20111009202027_create_phone_numbers.rb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/db/migrate/20111009202027_create_phone_numbers.rb b/db/migrate/20111009202027_create_phone_numbers.rb new file mode 100644 index 0000000..a7d15b4 --- /dev/null +++ b/db/migrate/20111009202027_create_phone_numbers.rb @@ -0,0 +1,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 |