From 08d69a647818d6d2a79f0e7888589f6506d03ed2 Mon Sep 17 00:00:00 2001 From: Marco Villeneuve Date: Fri, 13 Oct 2023 12:19:35 -0700 Subject: [PATCH] Small update to authority contact label --- api/src/main/resources/db/migration/V1.0.16__INSTITUTE_API.sql | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 api/src/main/resources/db/migration/V1.0.16__INSTITUTE_API.sql diff --git a/api/src/main/resources/db/migration/V1.0.16__INSTITUTE_API.sql b/api/src/main/resources/db/migration/V1.0.16__INSTITUTE_API.sql new file mode 100644 index 00000000..5f76da29 --- /dev/null +++ b/api/src/main/resources/db/migration/V1.0.16__INSTITUTE_API.sql @@ -0,0 +1,3 @@ +UPDATE AUTHORITY_CONTACT_TYPE_CODE +SET LABEL = 'Authority Representative' +WHERE AUTHORITY_CONTACT_TYPE_CODE = 'INDAUTHREP';