summaryrefslogtreecommitdiff
path: root/db/migrate/20200415161021_remove_not_null_ci_job_artifacts_constraint.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20200415161021_remove_not_null_ci_job_artifacts_constraint.rb')
-rw-r--r--db/migrate/20200415161021_remove_not_null_ci_job_artifacts_constraint.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/db/migrate/20200415161021_remove_not_null_ci_job_artifacts_constraint.rb b/db/migrate/20200415161021_remove_not_null_ci_job_artifacts_constraint.rb
new file mode 100644
index 00000000000..65430c180ce
--- /dev/null
+++ b/db/migrate/20200415161021_remove_not_null_ci_job_artifacts_constraint.rb
@@ -0,0 +1,19 @@
+# frozen_string_literal: true
+
+class RemoveNotNullCiJobArtifactsConstraint < ActiveRecord::Migration[6.0]
+ include Gitlab::Database::MigrationHelpers
+
+ DOWNTIME = false
+
+ def up
+ with_lock_retries do
+ execute <<~SQL
+ ALTER TABLE ci_job_artifacts DROP CONSTRAINT IF EXISTS ci_job_artifacts_file_store_not_null;
+ SQL
+ end
+ end
+
+ def down
+ # No-op
+ end
+end