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

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