summaryrefslogtreecommitdiff
path: root/db/migrate/20111012131652_create_phones.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20111012131652_create_phones.rb')
-rw-r--r--db/migrate/20111012131652_create_phones.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/db/migrate/20111012131652_create_phones.rb b/db/migrate/20111012131652_create_phones.rb
new file mode 100644
index 0000000..96d88f7
--- /dev/null
+++ b/db/migrate/20111012131652_create_phones.rb
@@ -0,0 +1,17 @@
+class CreatePhones < ActiveRecord::Migration
+ def self.up
+ create_table :phones do |t|
+ t.string :mac_address
+ t.integer :phone_model_id
+ t.string :ip_address
+ t.string :last_ip_address
+ t.string :http_user
+ t.string :http_password
+ t.timestamps
+ end
+ end
+
+ def self.down
+ drop_table :phones
+ end
+end