change reason field on flags and appeals to text

This commit is contained in:
Albert Yi 2018-04-03 16:14:42 -07:00
parent b219992b7d
commit e006380567

View File

@ -0,0 +1,6 @@
class ChangePostFlagsReasonType < ActiveRecord::Migration
def change
change_column :post_flags, :reason, :text
change_column :post_appeals, :reason, :text
end
end