Skip to content

Commit

Permalink
removed unsupported defaultOnNull attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
KushnirykOleh committed Nov 18, 2024
1 parent cd2b790 commit 8e00a02
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<changeSet author="oleh" id="1">
<createTable tableName="createTableWithTwoIdentityColumns" >
<column name="IdentityByDefault" type="long" autoIncrement="true" generationType="IDENTITY" startWith="10" incrementBy="5" defaultOnNull="true"/>
<column name="IdentityByDefault" type="long" autoIncrement="true" generationType="IDENTITY" startWith="10" incrementBy="5"/>
<column name="IdentityAlways" type="long" defaultValueComputed="GENERATED ALWAYS AS IDENTITY (START WITH 11 INCREMENT BY 2)"/>
</createTable>
</changeSet>
Expand Down

0 comments on commit 8e00a02

Please sign in to comment.