Shorter names for enable/disbale_ecs_notifications.
[ecp_lsfp.git] / db / migrate / 20130729214500_remove_filepath_from_notification.rb
blob6b2ae3345552d122772a651721ec0478f0fcfb83
1 class RemoveFilepathFromNotification < ActiveRecord::Migration
2   def up
3     remove_column :notifications, :filepath
4   end
6   def down
7     add_column :notifications, :filepath, :string
8   end
9 end