summaryrefslogtreecommitdiff
path: root/db/migrate/20200325094612_add_allow_merge_on_skipped_pipeline_to_project_settings.rb
blob: 8575dd2f080d27cf6c8868794264349f7a512372 (plain)
1
2
3
4
5
6
7
8
9
# 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