2017-06-13 07:44:13 -04:00
|
|
|
# rubocop:disable Migration/Datetime
|
2016-07-26 00:33:01 -04:00
|
|
|
class AddResolvedToNotes < ActiveRecord::Migration
|
|
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
|
|
|
|
DOWNTIME = false
|
|
|
|
|
|
|
|
def change
|
|
|
|
add_column :notes, :resolved_at, :datetime
|
|
|
|
add_column :notes, :resolved_by_id, :integer
|
|
|
|
end
|
|
|
|
end
|