Skip to content
Open
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
19 changes: 18 additions & 1 deletion configuration/pih/liquibase/liquibase.xml
Original file line number Diff line number Diff line change
Expand Up @@ -643,5 +643,22 @@
<comment>Remove old authentication events following bug fixes</comment>
<delete tableName="authentication_event_log"/>
</changeSet>


<changeSet id="20221117-add-petl-load-times" author="ddesimone">
<preConditions onFail="MARK_RAN">
<not><tableExists tableName="petl_load_times"/></not>
</preConditions>
<comment>
UHM-6713 - add all_encounters table
</comment>
<createTable tableName="petl_load_times">
<column name="load_datetime" type="datetime"/>
<column name="loaded_domain" type="varchar(50)"/>
<column name="loaded_min_datetime" type="datetime"/>
<column name="loaded_max_datetime" type="datetime"/>
<column name="number_updated_rows" type="int"/>
<column name="status" type="varchar(50)"/>
</createTable>
</changeSet>

</databaseChangeLog>