BigW Consortium Gitlab

20151210125929_add_project_id_to_ci.rb 316 Bytes
Newer Older
1
# rubocop:disable all
2
class AddProjectIdToCi < ActiveRecord::Migration
3
  def change
4 5 6 7 8 9
    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