You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
973 B
Python
34 lines
973 B
Python
5 years ago
|
# Generated by Django 3.0.3 on 2020-05-14 09:51
|
||
|
|
||
|
from django.conf import settings
|
||
|
from django.db import migrations, models
|
||
|
import django.db.models.deletion
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
4 years ago
|
("myauth", "0001_initial"),
|
||
|
("django_etebase", "0001_initial"),
|
||
5 years ago
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.CreateModel(
|
||
4 years ago
|
name="UserInfo",
|
||
5 years ago
|
fields=[
|
||
4 years ago
|
(
|
||
|
"owner",
|
||
|
models.OneToOneField(
|
||
|
on_delete=django.db.models.deletion.CASCADE,
|
||
|
primary_key=True,
|
||
|
serialize=False,
|
||
|
to=settings.AUTH_USER_MODEL,
|
||
|
),
|
||
|
),
|
||
|
("version", models.PositiveSmallIntegerField(default=1)),
|
||
|
("pubkey", models.BinaryField(editable=True)),
|
||
|
("salt", models.BinaryField(editable=True)),
|
||
5 years ago
|
],
|
||
|
),
|
||
|
]
|