added missing migrations

pull/2/head
mtyton 2023-06-08 01:39:26 +02:00
rodzic 486c575cb4
commit d918aa2fd7
1 zmienionych plików z 22 dodań i 0 usunięć

Wyświetl plik

@ -0,0 +1,22 @@
# Generated by Django 4.1.9 on 2023-06-07 23:16
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("store", "0005_documenttemplate_orderdocument"),
]
operations = [
migrations.AddField(
model_name="documenttemplate",
name="created_at",
field=models.DateTimeField(auto_now_add=True, null=True),
),
migrations.AddField(
model_name="orderdocument",
name="sent",
field=models.BooleanField(default=False),
),
]