summaryrefslogtreecommitdiff
path: root/db/post_migrate/20170719150301_merge_issuable_reopened_into_opened_state.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/post_migrate/20170719150301_merge_issuable_reopened_into_opened_state.rb')
-rw-r--r--db/post_migrate/20170719150301_merge_issuable_reopened_into_opened_state.rb32
1 files changed, 0 insertions, 32 deletions
diff --git a/db/post_migrate/20170719150301_merge_issuable_reopened_into_opened_state.rb b/db/post_migrate/20170719150301_merge_issuable_reopened_into_opened_state.rb
deleted file mode 100644
index 7af1d04f0cc..00000000000
--- a/db/post_migrate/20170719150301_merge_issuable_reopened_into_opened_state.rb
+++ /dev/null
@@ -1,32 +0,0 @@
-# See http://doc.gitlab.com/ce/development/migration_style_guide.html
-# for more information on how to write migrations for GitLab.
-
-class MergeIssuableReopenedIntoOpenedState < ActiveRecord::Migration[4.2]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- disable_ddl_transaction!
-
- class Issue < ActiveRecord::Base
- self.table_name = 'issues'
-
- include EachBatch
- end
-
- class MergeRequest < ActiveRecord::Base
- self.table_name = 'merge_requests'
-
- include EachBatch
- end
-
- def up
- [Issue, MergeRequest].each do |model|
- say "Changing #{model.table_name}.state from 'reopened' to 'opened'"
-
- model.where(state: 'reopened').each_batch do |batch|
- batch.update_all(state: 'opened')
- end
- end
- end
-end