debian-mirror-gitlab/db/migrate/20150924125150_add_project_id_to_ci_commit.rb
2016-06-16 23:09:34 +05:30

7 lines
149 B
Ruby

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