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

20201021220101_add_merge_trains_enabled.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 88a7189743532ecc3ef0d3b50e754b8747cd9622 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddMergeTrainsEnabled < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  def change
    add_column :project_ci_cd_settings, :merge_trains_enabled, :boolean, default: false, allow_null: false
  end
end