diaspora/db/migrate/20110517180148_delete_all_new_request_notifications.rb
2011-05-17 11:06:36 -07:00

13 lines
358 B
Ruby

class DeleteAllNewRequestNotifications < ActiveRecord::Migration
def self.up
execute <<SQL
DELETE notifications.* FROM notifications
WHERE notifications.type = 'Notifications::NewRequest'
OR notifications.type = 'Notifications::RequestAccepted'
SQL
end
def self.down
raise ActiveRecord::IrreversibleMigration.new
end
end