fix oracle and derby default

This commit is contained in:
Mike G 2020-07-24 10:03:21 -04:00
parent 7b435d6052
commit b67f30a03b
1 changed files with 2 additions and 0 deletions

View File

@ -116,6 +116,8 @@ public class DropIndexTask extends BaseTableTask {
break;
case DERBY_EMBEDDED:
case ORACLE_12C:
sql.add("alter table " + theTableName + " drop constraint " + theIndexName);
break;
case MSSQL_2012:
sql.add("drop index " + theIndexName + " on " + theTableName);
break;