summaryrefslogtreecommitdiff
path: root/db/migrate/20170330141723_disable_invalid_service_templates2.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20170330141723_disable_invalid_service_templates2.rb')
-rw-r--r--db/migrate/20170330141723_disable_invalid_service_templates2.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/db/migrate/20170330141723_disable_invalid_service_templates2.rb b/db/migrate/20170330141723_disable_invalid_service_templates2.rb
new file mode 100644
index 00000000000..8424e56d8a1
--- /dev/null
+++ b/db/migrate/20170330141723_disable_invalid_service_templates2.rb
@@ -0,0 +1,18 @@
+# This is the same as DisableInvalidServiceTemplates. Later migrations may have
+# inadventently enabled some invalid templates again.
+#
+class DisableInvalidServiceTemplates2 < ActiveRecord::Migration
+ DOWNTIME = false
+
+ unless defined?(Service)
+ class Service < ActiveRecord::Base
+ self.inheritance_column = nil
+ end
+ end
+
+ def up
+ Service.where(template: true, active: true).each do |template|
+ template.update(active: false) unless template.valid?
+ end
+ end
+end