On 2/3/06, Henri Yandell <[EMAIL PROTECTED]> wrote: > > ERROR 2006-02-03 11:03:04,814 UpgradeDatabase:upgradeTo210 - Problem > upgrading database to version 210 > java.sql.SQLException: ERROR: null value in column "updatetime" > violates not-null constraint
Digging in a bit. It's on line 318 of src/org/roller/business/utils/UpgradeDatabase.java . The preceeding lines don't set the updatetime field (would work on mysql as timestamps have auto defaults). Postgres though has a not-null and there's no default. Hen
