Make data column of notifications table big enough for long titles

This commit is contained in:
Neil Lalonde 2013-04-19 16:08:43 -04:00
parent ec0525ff37
commit d052026c51

View file

@ -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