From b4e207eeaed0b324ba9cb49d576d3cd677116243 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Mon, 13 Aug 2007 23:21:16 +0000 Subject: [PATCH] columns -> fields. git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@401 c613c5cb-e716-0410-b11b-feb51c14d237 --- .../threerings/parlor/rating/server/persist/RatingRecord.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/java/com/threerings/parlor/rating/server/persist/RatingRecord.java b/src/java/com/threerings/parlor/rating/server/persist/RatingRecord.java index 2d4a94c9..6f346e4f 100644 --- a/src/java/com/threerings/parlor/rating/server/persist/RatingRecord.java +++ b/src/java/com/threerings/parlor/rating/server/persist/RatingRecord.java @@ -29,7 +29,7 @@ import com.samskivert.jdbc.depot.annotation.Index; import com.samskivert.jdbc.depot.expression.ColumnExp; @Entity(indices={ - @Index(name="ixPlayerId", columns={ RatingRecord.PLAYER_ID }) + @Index(name="ixPlayerId", fields={ RatingRecord.PLAYER_ID }) }) public class RatingRecord extends PersistentRecord {