summaryrefslogtreecommitdiffstats
path: root/fbconnect/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'fbconnect/models.py')
-rwxr-xr-xfbconnect/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/fbconnect/models.py b/fbconnect/models.py
index 33a723e8..2172217d 100755
--- a/fbconnect/models.py
+++ b/fbconnect/models.py
@@ -3,4 +3,4 @@ from django.contrib.auth.models import User
class FBAssociation(models.Model):
user = models.ForeignKey(User)
- fbuid = models.TextField(max_length=12)
+ fbuid = models.CharField(max_length=12, unique=True)