gitlab-org--gitlab-foss/db/migrate/20220805154101_add_allow_ru...

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