From b80bd744ad873f6fc43018bc4bfb90677de167bd Mon Sep 17 00:00:00 2001 From: Stefan Wintermeyer Date: Mon, 17 Dec 2012 12:01:45 +0100 Subject: Start of GS5. --- db/migrate/20111012131652_create_phones.rb | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 db/migrate/20111012131652_create_phones.rb (limited to 'db/migrate/20111012131652_create_phones.rb') 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 -- cgit v1.2.3