mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 15:48:43 -05:00
Make data column of notifications table big enough for long titles
This commit is contained in:
parent
ec0525ff37
commit
d052026c51
1 changed files with 9 additions and 0 deletions
|
@ -0,0 +1,9 @@
|
|||
class IncreaseDataLengthOnNotifications < ActiveRecord::Migration
|
||||
def up
|
||||
execute "ALTER TABLE notifications ALTER COLUMN data TYPE VARCHAR(1000)"
|
||||
end
|
||||
|
||||
def down
|
||||
# Don't need to revert it to the smaller size
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue