chore: poetry and migrations (#4)

This commit is contained in:
2022-08-30 20:22:46 -03:00
committed by GitHub
parent 9ecc3acdd0
commit d8f94955ff
5 changed files with 90 additions and 34 deletions

View File

@@ -0,0 +1,20 @@
# Generated by Django 4.1 on 2022-08-30 23:20
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("core", "0003_auto_20201106_0152"),
]
operations = [
migrations.AlterField(
model_name="user",
name="id",
field=models.BigAutoField(
auto_created=True, primary_key=True, serialize=False, verbose_name="ID"
),
),
]