summaryrefslogtreecommitdiff
path: root/db/migrate/20170503022548_add_last_edited_at_and_last_edited_by_id_to_merge_requests.rb
blob: 7a1acdcbf69ef8d0cd1fa6e0d1a718394cb19e3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.

class AddLastEditedAtAndLastEditedByIdToMergeRequests < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  # Set this constant to true if this migration requires downtime.
  DOWNTIME = false

  def change
    add_column :merge_requests, :last_edited_at, :timestamp
    add_column :merge_requests, :last_edited_by_id, :integer
  end
end