26 lines
694 B
Python
26 lines
694 B
Python
|
# Generated by Django 2.1.2 on 2018-10-26 19:55
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
import uuid
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
initial = True
|
||
|
|
||
|
dependencies = [
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.CreateModel(
|
||
|
name='OTPSeed',
|
||
|
fields=[
|
||
|
('appuuid', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False)),
|
||
|
('appname', models.CharField(max_length=128)),
|
||
|
('username', models.CharField(max_length=128)),
|
||
|
('seed', models.CharField(max_length=128)),
|
||
|
('trusted', models.BooleanField(default=False)),
|
||
|
],
|
||
|
),
|
||
|
]
|