Beans/frank.

git-svn-id: https://samskivert.googlecode.com/svn/trunk@2489 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
samskivert
2008-11-19 23:33:15 +00:00
parent 9ca07c08df
commit a8b7908a64
@@ -108,7 +108,7 @@ public class PostgreSQLLiaison extends BaseLiaison
if (nullable != null) {
executeQuery(
conn, "ALTER TABLE " + tableSQL(table) + " ALTER COLUMN " + columnSQL(column) +
" " + (nullable ? "SET NOT NULL" : "DROP NOT NULL"));
" " + (nullable ? "DROP NOT NULL" : "SET NOT NULL"));
if (lbuf.length() > 0) {
lbuf.append(", ");
}