summaryrefslogtreecommitdiff
path: root/db/post_migrate/20190822185441_cleanup_epics_state_id_rename.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/post_migrate/20190822185441_cleanup_epics_state_id_rename.rb')
-rw-r--r--db/post_migrate/20190822185441_cleanup_epics_state_id_rename.rb17
1 files changed, 0 insertions, 17 deletions
diff --git a/db/post_migrate/20190822185441_cleanup_epics_state_id_rename.rb b/db/post_migrate/20190822185441_cleanup_epics_state_id_rename.rb
deleted file mode 100644
index 471b2ab9ca2..00000000000
--- a/db/post_migrate/20190822185441_cleanup_epics_state_id_rename.rb
+++ /dev/null
@@ -1,17 +0,0 @@
-# frozen_string_literal: true
-
-class CleanupEpicsStateIdRename < ActiveRecord::Migration[5.2]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- disable_ddl_transaction!
-
- def up
- cleanup_concurrent_column_rename :epics, :state, :state_id
- end
-
- def down
- rename_column_concurrently :epics, :state_id, :state
- end
-end