debian-mirror-gitlab/db/migrate/20200415161206_remove_not_null_uploads_constraint.rb
2020-04-22 19:07:51 +05:30

20 lines
356 B
Ruby

# frozen_string_literal: true
class RemoveNotNullUploadsConstraint < ActiveRecord::Migration[6.0]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
def up
with_lock_retries do
execute <<~SQL
ALTER TABLE uploads DROP CONSTRAINT IF EXISTS uploads_store_not_null;
SQL
end
end
def down
# No-op
end
end