#701 - DB Migration - incorrect alter column DDL when removing not null constraint (Postgres specific)

This commit is contained in:
Robin Bygrave
2016-05-13 09:07:43 +12:00
parent 4a59cf4c3d
commit 54706302df
2 changed files with 2 additions and 1 deletions
@@ -13,6 +13,7 @@ public class PostgresDdl extends PlatformDdl {
this.dropTableCascade = " cascade";
this.columnSetType = "type ";
this.alterTableIfExists = "if exists ";
this.columnSetNull = "drop not null";
}
/**