Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20220728114136_make_ssh_signature_key_nullable.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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