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

20221028015347_add_commit_committer_name_check_to_push_rules.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e9a0887f353558188c1f07109ca0b167d85d63d5 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddCommitCommitterNameCheckToPushRules < Gitlab::Database::Migration[2.0]
  def change
    add_column :push_rules, :commit_committer_name_check, :boolean, default: false, null: false
  end
end