2017-09-10 17:25:29 +05:30
|
|
|
# rubocop:disable Migration/Datetime
|
2016-09-13 17:45:13 +05:30
|
|
|
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
|