mirror of
https://github.com/krislamo/DJ-BaseSite
synced 2024-11-10 07:00:34 +00:00
7 lines
245 B
Python
7 lines
245 B
Python
from django.db import models
|
|
from django.contrib.auth.models import User
|
|
|
|
class UserProfile(models.Model):
|
|
user = models.ForeignKey(User, unique=True)
|
|
activated = models.BooleanField()
|
|
activatekey = models.CharField(max_length=25, blank=True) |