2018-10-26 19:08:01 +00:00
|
|
|
from django.db import models
|
2018-10-26 19:59:35 +00:00
|
|
|
import uuid
|
2018-10-26 19:08:01 +00:00
|
|
|
|
|
|
|
# Create your models here.
|
2018-10-26 19:48:21 +00:00
|
|
|
class OTPSeed(models.Model):
|
|
|
|
appuuid = models.UUIDField(primary_key=True, default=uuid.uuid4, editable=False)
|
|
|
|
appname = models.CharField(max_length=128)
|
|
|
|
username = models.CharField(max_length=128)
|
|
|
|
seed = models.CharField(max_length=128)
|
|
|
|
trusted = models.BooleanField(default=False)
|