106 lines
3.3 KiB
Python
106 lines
3.3 KiB
Python
# Generated by Django 3.2.12 on 2022-02-03 20:37
|
|
|
|
from django.conf import settings
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
import django.utils.timezone
|
|
import model_utils.fields
|
|
import uuid
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name="SimpleList",
|
|
fields=[
|
|
(
|
|
"created",
|
|
model_utils.fields.AutoCreatedField(
|
|
default=django.utils.timezone.now,
|
|
editable=False,
|
|
verbose_name="created",
|
|
),
|
|
),
|
|
(
|
|
"modified",
|
|
model_utils.fields.AutoLastModifiedField(
|
|
default=django.utils.timezone.now,
|
|
editable=False,
|
|
verbose_name="modified",
|
|
),
|
|
),
|
|
(
|
|
"id",
|
|
models.UUIDField(
|
|
default=uuid.uuid4,
|
|
editable=False,
|
|
primary_key=True,
|
|
serialize=False,
|
|
),
|
|
),
|
|
("title", models.CharField(max_length=255)),
|
|
(
|
|
"user",
|
|
models.ForeignKey(
|
|
on_delete=django.db.models.deletion.CASCADE,
|
|
to=settings.AUTH_USER_MODEL,
|
|
),
|
|
),
|
|
],
|
|
options={
|
|
"abstract": False,
|
|
},
|
|
),
|
|
migrations.CreateModel(
|
|
name="SimpleTask",
|
|
fields=[
|
|
(
|
|
"created",
|
|
model_utils.fields.AutoCreatedField(
|
|
default=django.utils.timezone.now,
|
|
editable=False,
|
|
verbose_name="created",
|
|
),
|
|
),
|
|
(
|
|
"modified",
|
|
model_utils.fields.AutoLastModifiedField(
|
|
default=django.utils.timezone.now,
|
|
editable=False,
|
|
verbose_name="modified",
|
|
),
|
|
),
|
|
(
|
|
"id",
|
|
models.UUIDField(
|
|
default=uuid.uuid4,
|
|
editable=False,
|
|
primary_key=True,
|
|
serialize=False,
|
|
),
|
|
),
|
|
("title", models.CharField(max_length=255)),
|
|
("text", models.TextField(blank=True, default="")),
|
|
("done", models.BooleanField(default=False)),
|
|
("deadline", models.DateTimeField(blank=True, null=True)),
|
|
(
|
|
"list",
|
|
models.ForeignKey(
|
|
on_delete=django.db.models.deletion.CASCADE,
|
|
to="simpletodo.simplelist",
|
|
),
|
|
),
|
|
],
|
|
options={
|
|
"abstract": False,
|
|
},
|
|
),
|
|
]
|