44 lines
1.8 KiB
Ruby
44 lines
1.8 KiB
Ruby
#
|
|
# Copyright (C) 2013 - 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 AddContextModuleProgressionsUniqueIndex < ActiveRecord::Migration[4.2]
|
|
tag :postdeploy
|
|
disable_ddl_transaction!
|
|
|
|
def self.up
|
|
ContextModuleProgression.
|
|
select([:user_id, :context_module_id]).
|
|
group(:user_id, :context_module_id).
|
|
preload(:context_module, :user).
|
|
where("user_id IS NOT NULL AND context_module_id IS NOT NULL").
|
|
having("COUNT(*) > 1").find_each do |cmp|
|
|
scope = ContextModuleProgression.
|
|
where(user_id: cmp.user_id, context_module_id: cmp.context_module_id)
|
|
keeper = scope.order("updated_at DESC").first
|
|
scope.where("id<>?", keeper).delete_all
|
|
end
|
|
|
|
add_index :context_module_progressions, [:user_id, :context_module_id], unique: true, name: 'index_cmp_on_user_id_and_module_id', algorithm: :concurrently
|
|
remove_index :context_module_progressions, name: 'u_id_module_id'
|
|
end
|
|
|
|
def self.down
|
|
remove_index :context_module_progressions, name: 'index_cmp_on_user_id_and_module_id'
|
|
add_index :context_module_progressions, [:user_id, :context_module_id], name: 'u_id_module_id', algorithm: :concurrently
|
|
end
|
|
end
|