[jOOQ/jOOQ#9063] Add HSQLDB to AlterTableStep#dropPrimaryKey()

This commit is contained in:
Knut Wannheden 2019-08-20 09:52:23 +02:00
parent e5768e6b51
commit 345fbe29fb

View File

@ -591,7 +591,7 @@ public interface AlterTableStep {
* Add a <code>DROP PRIMARY KEY</code> clause to the <code>ALTER TABLE</code>
* statement.
*/
@Support({ H2, MARIADB, MYSQL })
@Support({ H2, HSQLDB, MARIADB, MYSQL })
AlterTableFinalStep dropPrimaryKey();
/**