-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PLAT-82: Add PostgreSQL support #77
Conversation
('Auto close queue entries Task', 'Auto close queue entries Task', 'org.openmrs.module.queue.tasks.AutoCloseQueueEntryTask', | ||
TIMESTAMP(CURDATE()), 'MM/dd/yyyy HH:mm:ss', 86400, TRUE, 1, NOW(), UUID()); | ||
</sql> | ||
<insert tableName="scheduler_task_config"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Did you confirm that that modifying this changeset will not lead to validation checksum errors?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should I create a separate changeset for Postgresql?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@dkayiwa updated this by adding a validCheckSum tag.
api/src/main/resources/liquibase.xml
Outdated
@@ -400,7 +405,7 @@ | |||
<addForeignKeyConstraint baseColumnNames="visit_id" baseTableName="queue_entry" constraintName="queue_entry_visit_id_fk" onDelete="NO ACTION" onUpdate="NO ACTION" referencedColumnNames="visit_id" referencedTableName="visit"/> | |||
</changeSet> | |||
|
|||
<changeSet id="migrate_visit_id_to_queue_entry_20231025" author="mseaton"> | |||
<changeSet id="migrate_visit_id_to_queue_entry_20231025" author="mseaton" dbms="mysql"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<changeSet id="migrate_visit_id_to_queue_entry_20231025" author="mseaton" dbms="mysql"> | |
<changeSet id="migrate_visit_id_to_queue_entry_20231025" author="mseaton" dbms="mysql,mariadb"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ibacher I updated the PR.
Fixes PostgreSQL compatibility issues in the liquibase.xml