summaryrefslogtreecommitdiff
path: root/db/post_migrate/20161011222551_remove_inactive_jira_service_properties.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/post_migrate/20161011222551_remove_inactive_jira_service_properties.rb')
-rw-r--r--db/post_migrate/20161011222551_remove_inactive_jira_service_properties.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/db/post_migrate/20161011222551_remove_inactive_jira_service_properties.rb b/db/post_migrate/20161011222551_remove_inactive_jira_service_properties.rb
new file mode 100644
index 00000000000..319d86ac159
--- /dev/null
+++ b/db/post_migrate/20161011222551_remove_inactive_jira_service_properties.rb
@@ -0,0 +1,10 @@
+class RemoveInactiveJiraServiceProperties < ActiveRecord::Migration
+ include Gitlab::Database::MigrationHelpers
+
+ DOWNTIME = true
+ DOWNTIME_REASON = "Removes all inactive jira_service properties"
+
+ def up
+ execute("UPDATE services SET properties = '{}' WHERE services.type = 'JiraService' and services.active = false")
+ end
+end