mirror of
https://github.com/krislamo/DJ-BaseSite
synced 2026-05-25 17:53:26 +00:00
First Commit
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
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)
|
||||
Reference in New Issue
Block a user