gitlab-org--gitlab-foss/db/migrate/20151210125929_add_project_...

10 lines
316 B
Ruby
Raw Normal View History

# rubocop:disable all
2015-12-04 11:55:23 +00:00
class AddProjectIdToCi < ActiveRecord::Migration
2015-12-23 18:39:44 +00:00
def change
2015-12-04 11:55:23 +00:00
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