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

7 lines
149 B
Ruby

# rubocop:disable all
class AddProjectIdToCiCommit < ActiveRecord::Migration
def up
add_column :ci_commits, :gl_project_id, :integer
end
end