summaryrefslogtreecommitdiff
path: root/db/migrate/20220728114136_make_ssh_signature_key_nullable.rb
blob: 5d724e9f40693a62481954c2c463f6ccb90fb371 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class MakeSshSignatureKeyNullable < Gitlab::Database::Migration[2.0]
  enable_lock_retries!

  def change
    change_column_null :ssh_signatures, :key_id, true
  end
end