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/20190220150130_add_extra_shas_to_ci_pipelines.rb')
-rw-r--r--db/migrate/20190220150130_add_extra_shas_to_ci_pipelines.rb12
1 files changed, 0 insertions, 12 deletions
diff --git a/db/migrate/20190220150130_add_extra_shas_to_ci_pipelines.rb b/db/migrate/20190220150130_add_extra_shas_to_ci_pipelines.rb
deleted file mode 100644
index 45c7c0949c6..00000000000
--- a/db/migrate/20190220150130_add_extra_shas_to_ci_pipelines.rb
+++ /dev/null
@@ -1,12 +0,0 @@
-# frozen_string_literal: true
-
-class AddExtraShasToCiPipelines < ActiveRecord::Migration[5.0]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- def change
- add_column :ci_pipelines, :source_sha, :binary
- add_column :ci_pipelines, :target_sha, :binary
- end
-end