discourse/db/migrate/20210111025920_add_reject_reason_to_reviewables.rb
Krzysztof Kotlarek 06b7c44593
FEATURE: reason to reject user signup (#11700)
Feature for `Must Approve Users` setup. When a user is rejected, a staff member can optionally set a reason for audit purposes. In addition, feedback email can be sent to the user.

Meta: https://meta.discourse.org/t/account-rejection-email/103112/8
2021-01-15 09:43:26 +11:00

8 lines
171 B
Ruby

# frozen_string_literal: true
class AddRejectReasonToReviewables < ActiveRecord::Migration[6.0]
def change
add_column :reviewables, :reject_reason, :text
end
end