Merge pull request #2397 from internetee/2342-notification-text-lenght

Increase notification text field length on database
This commit is contained in:
Timo Võhmar 2022-09-29 17:05:44 +03:00 committed by GitHub
commit e0e9c43575
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 1 deletions

View file

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