chore: poetry and migrations (#4)
This commit is contained in:
20
core/migrations/0004_alter_user_id.py
Normal file
20
core/migrations/0004_alter_user_id.py
Normal 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"
|
||||
),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user