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

7 lines
149 B
Ruby
Raw Normal View History

# rubocop:disable all
2015-09-28 11:39:13 +00:00
class AddProjectIdToCiCommit < ActiveRecord::Migration
def up
add_column :ci_commits, :gl_project_id, :integer
end
end