debian-mirror-gitlab/db/migrate/20200325094612_add_allow_merge_on_skipped_pipeline_to_project_settings.rb
2020-06-23 00:09:42 +05:30

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