debian-mirror-gitlab/db/migrate/20220805154101_add_allow_run_pipelines_in_the_parent_project_setting.rb
2022-08-27 11:52:29 +05:30

9 lines
272 B
Ruby

# 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