Skip to content

Commit

Permalink
Add comments
Browse files Browse the repository at this point in the history
  • Loading branch information
pvannierop committed Jun 14, 2024
1 parent 6288298 commit 1b62569
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,10 @@
xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog
https://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.6.xsd"
objectQuotingStrategy="QUOTE_ALL_OBJECTS">
<property name="autoIncrement" value="true" dbms="h2,mysql,postgresql,oracle,mssql"/>

objectQuotingStrategy="QUOTE_ALL_OBJECTS">
<!-- Column names are capitalized and quoted because this is how jdbc-connector creates the table in postgres (capitalized and quoted)
and we want to be able to use the same table format in the integration tests.
-->
<changeSet id="Create observation tables" author="pim" context="dev">
<createTable tableName="observation">
<column name="PROJECT" type="varchar(255)">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,14 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog https://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.9.xsd"
objectQuotingStrategy="QUOTE_ALL_OBJECTS">

<!-- Column names are capitalized and quoted because this is how jdbc-connector creates the table in postgres (capitalized and quoted)
and we want to be able to use the same table format in the integration tests.
-->
<changeSet id="Add mock data for observations" author="pim" context="dev">
<loadData
file="db/changelog/changes/20220321-observations.csv"
separator=";"
commentLineStartsWith="#"
tableName="observation"
usePreparedStatements="true">
<column name="VALUE_NUMERIC" type="NUMERIC"/>
Expand Down

0 comments on commit 1b62569

Please sign in to comment.