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/20200417145946_add_locked_to_ci_job_artifact.rb')
-rw-r--r--db/migrate/20200417145946_add_locked_to_ci_job_artifact.rb19
1 files changed, 0 insertions, 19 deletions
diff --git a/db/migrate/20200417145946_add_locked_to_ci_job_artifact.rb b/db/migrate/20200417145946_add_locked_to_ci_job_artifact.rb
deleted file mode 100644
index 3bcc733f3b0..00000000000
--- a/db/migrate/20200417145946_add_locked_to_ci_job_artifact.rb
+++ /dev/null
@@ -1,19 +0,0 @@
-# frozen_string_literal: true
-
-class AddLockedToCiJobArtifact < ActiveRecord::Migration[6.0]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- def up
- with_lock_retries do
- add_column :ci_job_artifacts, :locked, :boolean
- end
- end
-
- def down
- with_lock_retries do
- remove_column :ci_job_artifacts, :locked
- end
- end
-end