我对表XTable中的第x列有一个递增序列,并且我想告诉冬眠使用此序列递增列的值。我该怎么做。附加列x不是id,并且不是id。有人知道解决方法吗?
Liquibase表配置
<changeSet author="xauthor" id="addXTable">
<createTable tableName="Xtable">
<column autoIncrement="true" name="x" type="BIGINT">
<constraints nullable="false"/>
</column>
<column name="id" type="VARCHAR(255)">
<constraints nullable="false" primaryKey="true" primaryKeyName="id_pkey"/>
</column>
</createTable>
</changeSet>