Increase notification text field length on database

This commit is contained in:
Thiago Youssef 2022-07-01 10:12:35 -03:00
parent 8238b329e3
commit bd3d7d98ff
2 changed files with 8 additions and 2 deletions

View file

@ -0,0 +1,5 @@
class ChangeNotificationTextTypeToText < ActiveRecord::Migration[6.1]
def change
change_column :notifications, :text, :text
end
end