From cb7d49506cb7cf83d4ab64880a2137d7e8bc37bc Mon Sep 17 00:00:00 2001 From: Jasder <2053003901@@qq.com> Date: Tue, 20 Oct 2020 15:19:26 +0800 Subject: [PATCH] FIX change description 'longtext' type with projects table --- .../20201020071758_change_description_from_projects.rb | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 db/migrate/20201020071758_change_description_from_projects.rb diff --git a/db/migrate/20201020071758_change_description_from_projects.rb b/db/migrate/20201020071758_change_description_from_projects.rb new file mode 100644 index 000000000..9c4e33502 --- /dev/null +++ b/db/migrate/20201020071758_change_description_from_projects.rb @@ -0,0 +1,5 @@ +class ChangeDescriptionFromProjects < ActiveRecord::Migration[5.2] + def change + change_column :projects, :description, :longtext + end +end