Skip to content

Commit

Permalink
liquibase reactive types should match imperative ones
Browse files Browse the repository at this point in the history
  • Loading branch information
mshima committed Jul 28, 2022
1 parent ac13bda commit d353c1b
Showing 1 changed file with 3 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,12 @@
<property name="uuidType" value="uuid" dbms="h2"/>
<%_ } _%>
<property name="datetimeType" value="datetime" dbms="h2"/>
<%_ if (reactive) { _%>
<property name="clobType" value="varchar(1000000)" dbms="h2"/>
<property name="blobType" value="varchar(1000000)" dbms="h2"/>
<%_ } else { _%>
<%_ if (prodDatabaseTypePostgres) { _%>
<%_ if (prodDatabaseTypePostgres) { _%>
<property name="clobType" value="longvarchar" dbms="h2"/>
<%_ } else { _%>
<%_ } else { _%>
<property name="clobType" value="clob" dbms="h2"/>
<%_ } _%>
<property name="blobType" value="blob" dbms="h2"/>
<%_ } _%>
<property name="blobType" value="blob" dbms="h2"/>
<%_ } _%>
<%_ if (devDatabaseTypeMysql || prodDatabaseTypeMysql) { _%>
<property name="now" value="now()" dbms="mysql"/>
Expand Down

0 comments on commit d353c1b

Please sign in to comment.