ungleich-otp/ungleichotp/otpauth/models.py

21 lines
672 B
Python
Raw Normal View History

2018-10-26 19:08:01 +00:00
from django.db import models
# Create your models here.
2018-10-26 19:48:21 +00:00
class OTPSeed(models.Model):
2018-11-17 09:01:24 +00:00
id = models.AutoField(primary_key=True)
name = models.CharField(max_length=128)
realm = models.CharField(max_length=128)
2018-10-26 19:48:21 +00:00
seed = models.CharField(max_length=128)
class Meta:
unique_together = (('name', 'realm'),)
# V1
# 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)