From b319fd25be8988132055a53120ccd43f88718280 Mon Sep 17 00:00:00 2001 From: zell Date: Thu, 11 Oct 2007 18:31:49 +0000 Subject: [PATCH] Oops, haha, this could've been amusing. git-svn-id: https://samskivert.googlecode.com/svn/trunk@2235 6335cc39-0255-0410-8fd6-9bcaacd3b74c --- src/java/com/samskivert/jdbc/depot/TableValueGenerator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/java/com/samskivert/jdbc/depot/TableValueGenerator.java b/src/java/com/samskivert/jdbc/depot/TableValueGenerator.java index cecb8bdc..b488f819 100644 --- a/src/java/com/samskivert/jdbc/depot/TableValueGenerator.java +++ b/src/java/com/samskivert/jdbc/depot/TableValueGenerator.java @@ -90,7 +90,7 @@ public class TableValueGenerator extends ValueGenerator if (_migrateIfExists) { Integer max = getFieldMaximum(conn, liaison); if (max != null) { - initialValue = max.intValue(); + initialValue = 1 + max.intValue(); } }