summaryrefslogtreecommitdiff
path: root/db/migrate
diff options
context:
space:
mode:
authorStefan Wintermeyer <stefan.wintermeyer@amooma.de>2012-12-28 12:08:03 +0100
committerStefan Wintermeyer <stefan.wintermeyer@amooma.de>2012-12-28 12:08:03 +0100
commita6d6c880f909af56e345eff1bd33db4c4b76b63d (patch)
tree8b1f7e75e1e704f3f5b5deaa9b5082d7276891ce /db/migrate
parent43199a00bcb0cc93775a3e3b71abea476a33a1a7 (diff)
Updates some needed attributes of old installations. closes #32
Diffstat (limited to 'db/migrate')
-rw-r--r--db/migrate/20121228101454_update_tenant_id.rb12
1 files changed, 12 insertions, 0 deletions
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