summaryrefslogtreecommitdiff
path: root/db/migrate/20160715132507_add_user_id_to_pipeline.rb
blob: b1e22b1c2bb3982d1ea0a55339a5f22e2a4da4d2 (plain)
1
2
3
4
5
6
7
class AddUserIdToPipeline < ActiveRecord::Migration[4.2]
  include Gitlab::Database::MigrationHelpers

  def change
    add_column :ci_commits, :user_id, :integer
  end
end