Fix current schema version

Schema migration was added by change Ib3baab6c1d but it forgot to
update the current schema version.

Change-Id: I4655a706ac07916682373e6896c47b860cfa5d2e
Signed-off-by: Edwin Kempin <ekempin@google.com>
This commit is contained in:
Edwin Kempin
2017-09-30 16:54:28 +02:00
parent a8afe60609
commit d100f0109e

View File

@@ -35,7 +35,7 @@ import java.util.concurrent.TimeUnit;
/** A version of the database schema. */
public abstract class SchemaVersion {
/** The current schema version. */
public static final Class<Schema_159> C = Schema_159.class;
public static final Class<Schema_160> C = Schema_160.class;
public static int getBinaryVersion() {
return guessVersion(C);