summaryrefslogtreecommitdiff
path: root/db/migrate/20151210125929_add_project_id_to_ci.rb
blob: b5de64b82ca8cc4c9ee38a06e7ab0c0a40eff500 (plain)
1
2
3
4
5
6
7
8
9
# rubocop:disable all
class AddProjectIdToCi < ActiveRecord::Migration
  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