mirror of
https://github.com/discourse/discourse.git
synced 2025-02-07 10:48:48 +08:00
8 lines
171 B
Ruby
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
|