From e129f788731fbb37e43d605945be9f2ee844e0a3 Mon Sep 17 00:00:00 2001 From: angshuman sarkar Date: Thu, 20 Jul 2023 05:38:55 +0000 Subject: [PATCH] BAH-3037 | adding provider attribute for "login locations" (#223) --- bahmnicore-omod/src/main/resources/liquibase.xml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/bahmnicore-omod/src/main/resources/liquibase.xml b/bahmnicore-omod/src/main/resources/liquibase.xml index 4dc74425a5..9afe7fcdd6 100644 --- a/bahmnicore-omod/src/main/resources/liquibase.xml +++ b/bahmnicore-omod/src/main/resources/liquibase.xml @@ -4558,4 +4558,17 @@ + + + + SELECT count(*) FROM provider_attribute_type where name="Login Locations"; + + + Adding provider attribute type - Login Locations + + INSERT INTO provider_attribute_type (name, description, datatype, min_occurs, creator, date_created, retired, uuid) + VALUES ("Login Locations","Specific locations for providers to login", "org.openmrs.customdatatype.datatype.LocationDatatype", 0, 1, NOW(), 0, UUID()); + + +