From 15dd17a3089581a461d4eea0e3ba3625f60c0ae2 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Mon, 10 Sep 2007 23:17:19 +0000 Subject: [PATCH] Added SCHEMA_VERSION. git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@423 c613c5cb-e716-0410-b11b-feb51c14d237 --- .../parlor/rating/server/persist/PercentileRecord.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/java/com/threerings/parlor/rating/server/persist/PercentileRecord.java b/src/java/com/threerings/parlor/rating/server/persist/PercentileRecord.java index 4c8570ce..9cba0cf9 100644 --- a/src/java/com/threerings/parlor/rating/server/persist/PercentileRecord.java +++ b/src/java/com/threerings/parlor/rating/server/persist/PercentileRecord.java @@ -56,6 +56,9 @@ public class PercentileRecord extends PersistentRecord new ColumnExp(PercentileRecord.class, DATA); // AUTO-GENERATED: FIELDS END + /** Increment this value to reflect changes to this object's schema. */ + public static final int SCHEMA_VERSION = 1; + /** The id of the game for which we're tracking a percentile distribution. */ @Id public int gameId;