summaryrefslogtreecommitdiff
path: root/db/migrate/20151210125929_add_project_id_to_ci.rb
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