#834 - Oracle DDL for drop index and drop constraints incorrectly includes "if exits"

This commit is contained in:
Rob Bygrave
2016-10-15 17:02:44 +13:00
parent 67469ef4d3
commit 4a085cb819
@@ -11,6 +11,8 @@ public class Oracle10Ddl extends PlatformDdl {
super(platform);
this.dropTableIfExists = "drop table ";
this.dropSequenceIfExists = "drop sequence ";
this.dropConstraintIfExists = "drop constraint";
this.dropIndexIfExists = "drop index ";
this.dropTableCascade = " cascade constraints purge";
this.foreignKeyRestrict = "";
this.alterColumn = "modify";