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

20160804142904_add_ci_config_file_to_project.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: abd94e63db32bc1fc42875c657974efaeaf97c32 (plain)
1
2
3
4
5
6
7
8
9
10
11
class AddCiConfigFileToProject < ActiveRecord::Migration[4.2]
  DOWNTIME = false

  def change
    add_column :projects, :ci_config_path, :string
  end

  def down
    remove_column :projects, :ci_config_path
  end
end