summaryrefslogtreecommitdiffstats
path: root/fbconnect/models.py
blob: 33a723e8ed841cd84d6cb03953b5b95f47fde7db (plain)
1
2
3
4
5
6
from django.db import models
from django.contrib.auth.models import User

class FBAssociation(models.Model):
    user = models.ForeignKey(User)
    fbuid = models.TextField(max_length=12)