summaryrefslogtreecommitdiff
path: root/db/migrate/20190830075508_add_external_pull_request_id_to_ci_pipelines.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20190830075508_add_external_pull_request_id_to_ci_pipelines.rb')
-rw-r--r--db/migrate/20190830075508_add_external_pull_request_id_to_ci_pipelines.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/db/migrate/20190830075508_add_external_pull_request_id_to_ci_pipelines.rb b/db/migrate/20190830075508_add_external_pull_request_id_to_ci_pipelines.rb
deleted file mode 100644
index 5abf56742b1..00000000000
--- a/db/migrate/20190830075508_add_external_pull_request_id_to_ci_pipelines.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-# frozen_string_literal: true
-
-class AddExternalPullRequestIdToCiPipelines < ActiveRecord::Migration[5.2]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- def up
- add_column :ci_pipelines, :external_pull_request_id, :bigint
- end
-
- def down
- remove_column :ci_pipelines, :external_pull_request_id
- end
-end