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. --- ...20927110240_change_data_type_for_announce_call_agents.rb | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 db/migrate/20120927110240_change_data_type_for_announce_call_agents.rb (limited to 'db/migrate/20120927110240_change_data_type_for_announce_call_agents.rb') diff --git a/db/migrate/20120927110240_change_data_type_for_announce_call_agents.rb b/db/migrate/20120927110240_change_data_type_for_announce_call_agents.rb new file mode 100644 index 0000000..9ae0277 --- /dev/null +++ b/db/migrate/20120927110240_change_data_type_for_announce_call_agents.rb @@ -0,0 +1,13 @@ +class ChangeDataTypeForAnnounceCallAgents < ActiveRecord::Migration + def up + change_table :automatic_call_distributors do |t| + t.change :announce_call_agents, :string + end + end + + def down + change_table :automatic_call_distributors do |t| + t.change :announce_call_agents, :boolean + end + end +end -- cgit v1.2.3