From a6d6c880f909af56e345eff1bd33db4c4b76b63d Mon Sep 17 00:00:00 2001 From: Stefan Wintermeyer Date: Fri, 28 Dec 2012 12:08:03 +0100 Subject: Updates some needed attributes of old installations. closes #32 --- db/migrate/20121228101454_update_tenant_id.rb | 12 ++++++++++++ db/schema.rb | 4 +++- 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 db/migrate/20121228101454_update_tenant_id.rb diff --git a/db/migrate/20121228101454_update_tenant_id.rb b/db/migrate/20121228101454_update_tenant_id.rb new file mode 100644 index 0000000..5c46b04 --- /dev/null +++ b/db/migrate/20121228101454_update_tenant_id.rb @@ -0,0 +1,12 @@ +class UpdateTenantId < ActiveRecord::Migration + def up + Phone.where(:hot_deskable => true).each do |phone| + phone.tenant_id = Tenant.last.id + phone.fallback_sip_account = phone.sip_accounts.where(:sip_accountable_type => 'Tenant').first + phone.save + end + end + + def down + end +end diff --git a/db/schema.rb b/db/schema.rb index 1395e1b..804ff5f 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -11,7 +11,7 @@ # # It's strongly recommended to check this file into your version control system. -ActiveRecord::Schema.define(:version => 20121125084447) do +ActiveRecord::Schema.define(:version => 20121228101454) do create_table "access_authorizations", :force => true do |t| t.string "access_authorizationable_type" @@ -738,6 +738,8 @@ ActiveRecord::Schema.define(:version => 20121125084447) do t.boolean "nightly_reboot" t.string "provisioning_key" t.boolean "provisioning_key_active" + t.integer "tenant_id" + t.integer "fallback_sip_account_id" end create_table "registrations", :id => false, :force => true do |t| -- cgit v1.2.3 From 9190c997fe17ed1c680d2b073c8d2e21ac864b57 Mon Sep 17 00:00:00 2001 From: Stefan Wintermeyer Date: Fri, 28 Dec 2012 12:57:24 +0100 Subject: Update some Phone attributes. Which where introduced with 9101b20cc5ca4e0553cfb4a503f0d2d51863ba37 --- db/migrate/20121228101454_update_tenant_id.rb | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/db/migrate/20121228101454_update_tenant_id.rb b/db/migrate/20121228101454_update_tenant_id.rb index 5c46b04..dc2f37c 100644 --- a/db/migrate/20121228101454_update_tenant_id.rb +++ b/db/migrate/20121228101454_update_tenant_id.rb @@ -1,7 +1,11 @@ class UpdateTenantId < ActiveRecord::Migration def up - Phone.where(:hot_deskable => true).each do |phone| + Phone.all.each do |phone| phone.tenant_id = Tenant.last.id + phone.save + end + + Phone.where(:hot_deskable => true).each do |phone| phone.fallback_sip_account = phone.sip_accounts.where(:sip_accountable_type => 'Tenant').first phone.save end -- cgit v1.2.3