summaryrefslogtreecommitdiff
path: root/db/migrate/20150924125150_add_project_id_to_ci_commit.rb
blob: 905332b7dc79a6fb2e758a20f51ec7c8788199da (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddProjectIdToCiCommit < ActiveRecord::Migration
  def up
    add_column :ci_commits, :gl_project_id, :integer
  end
end