summaryrefslogtreecommitdiff
path: root/db/migrate/20220805154101_add_allow_run_pipelines_in_the_parent_project_setting.rb
blob: dbc76e8ccfd788c762604405a390206005610e44 (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

class AddAllowRunPipelinesInTheParentProjectSetting < Gitlab::Database::Migration[2.0]
  def change
    add_column :project_ci_cd_settings, :allow_fork_pipelines_to_run_in_parent_project, :boolean,
      default: true, null: false
  end
end