gitlab-org--gitlab-foss/db/migrate/20200325094612_add_allow_me...

10 lines
236 B
Ruby

# frozen_string_literal: true
class AddAllowMergeOnSkippedPipelineToProjectSettings < ActiveRecord::Migration[6.0]
DOWNTIME = false
def change
add_column :project_settings, :allow_merge_on_skipped_pipeline, :boolean
end
end