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

20191111121500_default_ci_config_path.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f391f5ffe991ac772e6a3ad26ddce2efb64055de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

class DefaultCiConfigPath < ActiveRecord::Migration[5.2]
  DOWNTIME = false

  def up
    add_column :application_settings, :default_ci_config_path, :string, limit: 255
  end

  def down
    remove_column :application_settings, :default_ci_config_path
  end
end