debian-mirror-gitlab/db/migrate/20150924125150_add_project_id_to_ci_commit.rb

7 lines
149 B
Ruby
Raw Normal View History

# rubocop:disable all
2015-10-24 18:46:33 +05:30
class AddProjectIdToCiCommit < ActiveRecord::Migration
def up
add_column :ci_commits, :gl_project_id, :integer
end
end