diff options
author | Stefan Wintermeyer <stefan.wintermeyer@amooma.de> | 2012-12-17 12:01:45 +0100 |
---|---|---|
committer | Stefan Wintermeyer <stefan.wintermeyer@amooma.de> | 2012-12-17 12:01:45 +0100 |
commit | b80bd744ad873f6fc43018bc4bfb90677de167bd (patch) | |
tree | 072c4b0e33d442528555b82c415f5e7a1712b2b0 /db/migrate/20111012131652_create_phones.rb | |
parent | 3e706c2025ecc5523e81ad649639ef2ff75e7bac (diff) |
Start of GS5.
Diffstat (limited to 'db/migrate/20111012131652_create_phones.rb')
-rw-r--r-- | db/migrate/20111012131652_create_phones.rb | 17 |
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 |