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

20151210125929_add_project_id_to_ci.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f5f2c353f4a04e5ee78a664cc7dd413eb8cc590f (plain)
1
2
3
4
5
6
7
8
class AddProjectIdToCi < ActiveRecord::Migration[4.2]
  def change
    add_column :ci_builds, :gl_project_id, :integer
    add_column :ci_runner_projects, :gl_project_id, :integer
    add_column :ci_triggers, :gl_project_id, :integer
    add_column :ci_variables, :gl_project_id, :integer
  end
end