summaryrefslogtreecommitdiff
path: root/db/migrate/20170507205316_add_head_pipeline_id_to_merge_requests.rb
blob: adfe6559084d8c7bc4147c4c308f59c376cd0602 (plain)
1
2
3
4
5
6
7
class AddHeadPipelineIdToMergeRequests < ActiveRecord::Migration[4.2]
  DOWNTIME = false

  def change
    add_column :merge_requests, :head_pipeline_id, :integer
  end
end