blob: 2172217d771381b866666049ed4cb1b884440502 (
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.CharField(max_length=12, unique=True)
|