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

9 lines
299 B
Ruby
Raw Normal View History

class AddProjectIdToCi < ActiveRecord::Migration[4.2]
2015-12-23 13:39:44 -05:00
def change
2015-12-04 06:55:23 -05: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