Skip to content

Commit

Permalink
Only create tables when running in dev mode
Browse files Browse the repository at this point in the history
  • Loading branch information
pvannierop committed May 3, 2024
1 parent 7478a47 commit 434197f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
https://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.6.xsd">
<property name="autoIncrement" value="true" dbms="h2,mysql,postgresql,oracle,mssql"/>

<changeSet id="Create observation tables" author="pim">
<changeSet id="Create observation tables" author="pim" context="dev">
<createTable tableName="observation">
<column name="id" type="bigint" autoIncrement="${autoIncrement}">
<constraints primaryKey="true" nullable="false"/>
Expand Down

0 comments on commit 434197f

Please sign in to comment.