FIX change description column type to longtext

This commit is contained in:
Jasder 2020-07-15 23:30:08 +08:00
parent 00cbb6ae37
commit 6cd56a7c63
1 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,5 @@
class ChangeDescriptionLimtFromIssues < ActiveRecord::Migration[5.2]
def change
change_column :issues, :description, :longtext
end
end