From 38d341bb1889e380f2f7503fdbe7eefd431e53f8 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Wed, 10 Apr 2013 14:29:08 -0700 Subject: [PATCH] Facebook's session keys now exceed 255 characters. W00t. --- src/main/java/com/threerings/user/depot/ExternalAuthRecord.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/threerings/user/depot/ExternalAuthRecord.java b/src/main/java/com/threerings/user/depot/ExternalAuthRecord.java index 788964b..056f26d 100644 --- a/src/main/java/com/threerings/user/depot/ExternalAuthRecord.java +++ b/src/main/java/com/threerings/user/depot/ExternalAuthRecord.java @@ -41,7 +41,7 @@ public class ExternalAuthRecord extends PersistentRecord /** The most recent session key provided by the external site, for use in making API requests * to said site based on our most recently active session. */ - @Column(nullable=true) + @Column(nullable=true, length=1024) public String sessionKey; // AUTO-GENERATED: METHODS START