From e006380567c0652ea35d4b2b5598e4d025b5d82a Mon Sep 17 00:00:00 2001 From: Albert Yi Date: Tue, 3 Apr 2018 16:14:42 -0700 Subject: [PATCH] change reason field on flags and appeals to text --- db/migrate/20180403231351_change_post_flags_reason_type.rb | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 db/migrate/20180403231351_change_post_flags_reason_type.rb diff --git a/db/migrate/20180403231351_change_post_flags_reason_type.rb b/db/migrate/20180403231351_change_post_flags_reason_type.rb new file mode 100644 index 000000000..991135a8f --- /dev/null +++ b/db/migrate/20180403231351_change_post_flags_reason_type.rb @@ -0,0 +1,6 @@ +class ChangePostFlagsReasonType < ActiveRecord::Migration + def change + change_column :post_flags, :reason, :text + change_column :post_appeals, :reason, :text + end +end