summaryrefslogtreecommitdiff
path: root/db/migrate/20170720130749_add_foreign_key_to_ci_pipeline_variables.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20170720130749_add_foreign_key_to_ci_pipeline_variables.rb')
-rw-r--r--db/migrate/20170720130749_add_foreign_key_to_ci_pipeline_variables.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/db/migrate/20170720130749_add_foreign_key_to_ci_pipeline_variables.rb b/db/migrate/20170720130749_add_foreign_key_to_ci_pipeline_variables.rb
deleted file mode 100644
index df9350d9ad5..00000000000
--- a/db/migrate/20170720130749_add_foreign_key_to_ci_pipeline_variables.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-class AddForeignKeyToCiPipelineVariables < ActiveRecord::Migration[4.2]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- disable_ddl_transaction!
-
- def up
- add_concurrent_foreign_key(:ci_pipeline_variables, :ci_pipelines, column: :pipeline_id)
- end
-
- def down
- remove_foreign_key(:ci_pipeline_variables, column: :pipeline_id)
- end
-end