summaryrefslogtreecommitdiff
path: root/db/migrate/20200415160722_remove_not_null_lfs_objects_constraint.rb
blob: 58cfa8e8969808a326855d74147610786a7cddc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

class RemoveNotNullLfsObjectsConstraint < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def up
    with_lock_retries do
      execute <<~SQL
        ALTER TABLE lfs_objects DROP CONSTRAINT IF EXISTS lfs_objects_file_store_not_null;
      SQL
    end
  end

  def down
    # No-op
  end
end