2017-04-28 03:54:48 +08:00
|
|
|
#
|
|
|
|
# Copyright (C) 2016 - 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/>.
|
|
|
|
|
2016-02-17 05:51:39 +08:00
|
|
|
Rails.configuration.to_prepare do
|
2016-09-23 04:09:09 +08:00
|
|
|
reflection = Version.reflections['versionable']
|
2016-02-17 05:51:39 +08:00
|
|
|
reflection.options[:exhaustive] = false
|
|
|
|
reflection.options[:polymorphic] = [
|
|
|
|
:assessment_question,
|
|
|
|
:assignment,
|
|
|
|
:assignment_override,
|
|
|
|
:learning_outcome_question_result,
|
|
|
|
:learning_outcome_result,
|
|
|
|
:rubric,
|
|
|
|
:rubric_assessment,
|
|
|
|
:submission,
|
|
|
|
:wiki_page,
|
|
|
|
{ quiz: 'Quizzes::Quiz',
|
|
|
|
quiz_submission: 'Quizzes::QuizSubmission' }]
|
|
|
|
Version.add_polymorph_methods(reflection)
|
2016-05-20 12:58:43 +08:00
|
|
|
|
|
|
|
Version.include(CanvasPartman::Concerns::Partitioned)
|
|
|
|
Version.partitioning_strategy = :by_id
|
|
|
|
Version.partitioning_field = 'versionable_id'
|
|
|
|
Version.partition_size = 5_000_000
|
2016-02-17 05:51:39 +08:00
|
|
|
end
|