diff --git a/db/migrate/20130419195746_increase_data_length_on_notifications.rb b/db/migrate/20130419195746_increase_data_length_on_notifications.rb new file mode 100644 index 000000000..796b83c7e --- /dev/null +++ b/db/migrate/20130419195746_increase_data_length_on_notifications.rb @@ -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