Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions api/src/main/resources/liquibase.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2020,4 +2020,11 @@
INSERT INTO scheduler_task_config_property (name, value, task_config_id) VALUES ('syncFhirProfileUUID', '6a675910-8b97-43d6-8956-ec5d5e3dda9f', (select task_config_id from scheduler_task_config where uuid="2ea451ae-b018-4003-8379-04b08fe66856"));
</sql>
</changeSet>

<changeSet id="ugandaemrsync-2024-09-25-1003" author="slubwama" dbms="mysql">
<comment>Make sync fhir profile have a limit of 50 records at a time per syncing</comment>
<sql>
UPDATE sync_fhir_profile SET sync_limit=50 WHERE date_created is not null;
</sql>
</changeSet>
</databaseChangeLog>
Loading