14 lines
263 B
Python
14 lines
263 B
Python
|
from django.db import models
|
||
|
from app.models import ItfModel
|
||
|
from django.contrib.auth.models import User
|
||
|
|
||
|
|
||
|
|
||
|
class ItfProfile(ItfModel):
|
||
|
user = models.ForeignKey(User, null=True)
|
||
|
subscribed = models.BooleanField(default=True)
|
||
|
|
||
|
|
||
|
|
||
|
# Create your models here.
|