Add root account id to reburics

Closes PLAT-5576
flag=none

Test Plan:
- Verify migrations run
- Verify a root_account_id may be set on a Rubric record

Change-Id: I5f208b384f9c903469d25c20d6c735c86fa72942
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/229760
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
QA-Review: Weston Dransfield <wdransfield@instructure.com>
Product-Review: Weston Dransfield <wdransfield@instructure.com>
Reviewed-by: Clint Furse <cfurse@instructure.com>
Reviewed-by: Cody Cutrer <cody@instructure.com>
This commit is contained in:
wdransfield 2020-03-12 09:23:52 -06:00 committed by Weston Dransfield
parent bf04685990
commit 9e3fd1707d
1 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,32 @@
#
# Copyright (C) 2020 - present Instructure, Inc.
#
# This file is part of Canvas.
#
# Canvas is free software: you can redistribute it and/or modify
# the terms of the GNU Affero General Public License as publishe
# Software Foundation, version 3 of the License.
#
# Canvas is distributed in the hope that it will be useful, but
# WARRANTY; without even the implied warranty of MERCHANTABILITY
# A PARTICULAR PURPOSE. See the GNU Affero General Public Licens
# details.
#
# You should have received a copy of the GNU Affero General Publ
# with this program. If not, see <http://www.gnu.org/licenses/>.
class AddRootAccountIdToRubrics < ActiveRecord::Migration[5.2]
include MigrationHelpers::AddColumnAndFk
tag :predeploy
disable_ddl_transaction!
def up
add_column_and_fk :rubrics, :root_account_id, :accounts
add_index :rubrics, :root_account_id, algorithm: :concurrently
end
def down
remove_column :rubrics, :root_account_id
end
end