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/20120126090831_create_callthroughs.rb | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 db/migrate/20120126090831_create_callthroughs.rb (limited to 'db/migrate/20120126090831_create_callthroughs.rb') diff --git a/db/migrate/20120126090831_create_callthroughs.rb b/db/migrate/20120126090831_create_callthroughs.rb new file mode 100644 index 0000000..e7d146e --- /dev/null +++ b/db/migrate/20120126090831_create_callthroughs.rb @@ -0,0 +1,15 @@ +class CreateCallthroughs < ActiveRecord::Migration + def self.up + create_table :callthroughs do |t| + t.integer :tenant_id + t.string :name + t.integer :sip_account_id + t.string :clip_no_screening + t.timestamps + end + end + + def self.down + drop_table :callthroughs + end +end -- cgit v1.2.3