summaryrefslogtreecommitdiff
path: root/db/migrate/20160527020117_remove_notification_settings_for_deleted_projects.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20160527020117_remove_notification_settings_for_deleted_projects.rb')
-rw-r--r--db/migrate/20160527020117_remove_notification_settings_for_deleted_projects.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/db/migrate/20160527020117_remove_notification_settings_for_deleted_projects.rb b/db/migrate/20160527020117_remove_notification_settings_for_deleted_projects.rb
deleted file mode 100644
index c530c09859d..00000000000
--- a/db/migrate/20160527020117_remove_notification_settings_for_deleted_projects.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-class RemoveNotificationSettingsForDeletedProjects < ActiveRecord::Migration[4.2]
- def up
- execute <<-SQL
- DELETE FROM notification_settings
- WHERE notification_settings.source_type = 'Project'
- AND NOT EXISTS (
- SELECT *
- FROM projects
- WHERE projects.id = notification_settings.source_id
- )
- SQL
- end
-end