Skip to content

Commit

Permalink
TRUNK-5901 Error scheduling task via SysAdmin OWA on PostgreSQL (#3426)
Browse files Browse the repository at this point in the history
  • Loading branch information
Am-Coder committed Aug 4, 2020
1 parent 2750dbe commit f306940
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,8 @@
SELECT setval('location_location_id_seq', (SELECT MAX(location_id) FROM location)+1);
SELECT setval('order_type_order_type_id_seq', (SELECT MAX(order_type_id) FROM order_type)+1);
SELECT setval('patient_identifier_type_patient_identifier_type_id_seq', (SELECT MAX(patient_identifier_type_id) FROM patient_identifier_type)+1);
SELECT setval('scheduler_task_config_task_config_id_seq', (SELECT MAX(task_config_id) FROM scheduler_task_config)+1);
SELECT setval('scheduler_task_config_property_task_config_property_id_seq', (SELECT MAX(task_config_property_id) FROM scheduler_task_config_property)+1);
</sql>
</changeSet>

Expand Down

0 comments on commit f306940

Please sign in to comment.