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

20220914112457_add_reject_non_dco_commits_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: 57b3c209660556e92548fa50d96d4323ef31545f (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddRejectNonDcoCommitsToPushRules < Gitlab::Database::Migration[2.0]
  def change
    add_column :push_rules, :reject_non_dco_commits, :boolean
  end
end