[jOOQ/jOOQ#9063] Support ALTER TABLE ... DROP PRIMARY KEY for Derby

This commit is contained in:
Knut Wannheden 2019-08-23 10:06:36 +02:00
parent 5830b1b0d5
commit 2b3532d4c5

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, HSQLDB, MARIADB, MYSQL })
@Support({ DERBY, H2, HSQLDB, MARIADB, MYSQL })
AlterTableFinalStep dropPrimaryKey();
/**