<createTable tableName="tableName">
<column autoIncrement="true" name="id" type="bigint">
<constraints nullable="false" primaryKey="true" />
</column>
</createTable>
The problem ist the negation in the if clause. The if clause should be executed when it is a single primary key column.
Also the variable is used twice in the isSinglePrimaryKeyColumn if clause. The last one can be removed...I think so.
I don't have a create issue button. I've registered yesterday.
<column autoIncrement="true" name="id" type="bigint">
<constraints nullable="false" primaryKey="true" />
</column>
</createTable>
if (!((isSinglePrimaryKeyColumn && isPrimaryKeyAutoIncrement) && isSinglePrimaryKeyColumn))/*)*/ {
The problem ist the negation in the if clause. The if clause should be executed when it is a single primary key column.
Also the variable is used twice in the isSinglePrimaryKeyColumn if clause. The last one can be removed...I think so.
I don't have a create issue button. I've registered yesterday.