Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20190822175441_rename_epics_state_to_state_id.rb')
-rw-r--r--db/migrate/20190822175441_rename_epics_state_to_state_id.rb17
1 files changed, 0 insertions, 17 deletions
diff --git a/db/migrate/20190822175441_rename_epics_state_to_state_id.rb b/db/migrate/20190822175441_rename_epics_state_to_state_id.rb
deleted file mode 100644
index 7f40d164a8e..00000000000
--- a/db/migrate/20190822175441_rename_epics_state_to_state_id.rb
+++ /dev/null
@@ -1,17 +0,0 @@
-# frozen_string_literal: true
-
-class RenameEpicsStateToStateId < ActiveRecord::Migration[5.2]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- disable_ddl_transaction!
-
- def up
- rename_column_concurrently :epics, :state, :state_id
- end
-
- def down
- cleanup_concurrent_column_rename :epics, :state_id, :state
- end
-end