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, 0 insertions, 10 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
deleted file mode 100644
index bf3aee99418..00000000000
--- a/db/post_migrate/20161011222551_remove_inactive_jira_service_properties.rb
+++ /dev/null
@@ -1,10 +0,0 @@
-class RemoveInactiveJiraServiceProperties < ActiveRecord::Migration[4.2]
- 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