canvas-lms/db/migrate/20140818134232_extend_notif...

41 lines
1.8 KiB
Ruby

#
# Copyright (C) 2014 - present Instructure, Inc.
#
# This file is part of Canvas.
#
# Canvas is free software: you can redistribute it and/or modify it under
# the terms of the GNU Affero General Public License as published by the Free
# Software Foundation, version 3 of the License.
#
# Canvas is distributed in the hope that it will be useful, but WITHOUT ANY
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
# A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
# details.
#
# You should have received a copy of the GNU Affero General Public License along
# with this program. If not, see <http://www.gnu.org/licenses/>.
class ExtendNotificationPoliciesIndex < ActiveRecord::Migration[4.2]
tag :postdeploy
disable_ddl_transaction!
def up
NotificationPolicy.select([:communication_channel_id, :notification_id]).
group(:communication_channel_id, :notification_id).
having("COUNT(*) > 1").find_each do |policy|
scope = NotificationPolicy.where(communication_channel_id: policy.communication_channel_id, notification_id: policy.notification_id)
keeper = scope.order(:created_at).first
to_delete_scope = scope.where("id<>?", keeper)
DelayedMessage.where(notification_policy_id: to_delete_scope).update_all(notification_policy_id: keeper.id)
to_delete_scope.delete_all
end
add_index :notification_policies, [:communication_channel_id, :notification_id], unique: true, algorithm: :concurrently, name: 'index_notification_policies_on_cc_and_notification_id'
remove_index :notification_policies, :communication_channel_id
end
def down
add_index :notification_policies, :communication_channel_id, algorithm: :concurrently
remove_index :notification_policies, name: 'index_notification_policies_on_cc_and_notification_id'
end
end