gitlab-org--gitlab-foss/db/migrate/20200909083339_add_change_r...

10 lines
243 B
Ruby

# frozen_string_literal: true
class AddChangeReviewerMergeRequestToNotificationSettings < ActiveRecord::Migration[6.0]
DOWNTIME = false
def change
add_column :notification_settings, :change_reviewer_merge_request, :boolean
end
end