Location on Server where the patient uploaded images will be stored
INSERT INTO global_property (`property`, `property_value`, `description`, `uuid`)
VALUES ('emr.personImagesDirectory', '/home/bahmni/patient_images', 'Location of patient images - required by emrapi', uuid());
SELECT COUNT(*) FROM global_property where property='patient.nameValidationRegex';
Updating the given name regex pattern
update global_property set property_value='^[a-zA-Z \\-\\.]+$' where property='patient.nameValidationRegex';
SELECT COUNT(*) FROM global_property where property='patient.nameValidationRegex';
Removing the regex pattern so we can create person for provider with organization name
update global_property set property_value='' where property='patient.nameValidationRegex';