From f5167284f2e1445b48a8ab6b0cb8e037aece4d12 Mon Sep 17 00:00:00 2001 From: Marco Villeneuve Date: Thu, 11 Jul 2024 12:54:34 -0700 Subject: [PATCH] Text updates for consistency --- api/src/main/resources/db/migration/V1.0.50__EDX_API.sql | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 api/src/main/resources/db/migration/V1.0.50__EDX_API.sql diff --git a/api/src/main/resources/db/migration/V1.0.50__EDX_API.sql b/api/src/main/resources/db/migration/V1.0.50__EDX_API.sql new file mode 100644 index 00000000..5e5b326b --- /dev/null +++ b/api/src/main/resources/db/migration/V1.0.50__EDX_API.sql @@ -0,0 +1,9 @@ +UPDATE EDX_ROLE +SET LABEL = 'View Student Data Collection', +DESCRIPTION = 'Read-only Student Data Collection (1701) role for District.' +WHERE EDX_ROLE_CODE = 'DIS_SDC_RO'; + +UPDATE EDX_ROLE +SET LABEL = 'View Student Data Collection', +DESCRIPTION = 'Read-only Student Data Collection (1701) role for School.' +WHERE EDX_ROLE_CODE = 'SCH_SDC_RO';