Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20200325094612_add_allow_merge_on_skipped_pipeline_to_project_settings.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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