debian-mirror-gitlab/db/migrate/20151210125929_add_project_id_to_ci.rb

9 lines
299 B
Ruby
Raw Normal View History

2019-02-15 15:39:39 +05:30
class AddProjectIdToCi < ActiveRecord::Migration[4.2]
def change
2015-12-23 02:04:40 +05:30
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