19 lines
436 B
Python
19 lines
436 B
Python
|
|
# Generated by Django 6.0.3 on 2026-03-14 19:34
|
||
|
|
|
||
|
|
from django.db import migrations, models
|
||
|
|
|
||
|
|
|
||
|
|
class Migration(migrations.Migration):
|
||
|
|
|
||
|
|
dependencies = [
|
||
|
|
('accounts', '0009_user_partner'),
|
||
|
|
]
|
||
|
|
|
||
|
|
operations = [
|
||
|
|
migrations.AlterField(
|
||
|
|
model_name='user',
|
||
|
|
name='id',
|
||
|
|
field=models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID'),
|
||
|
|
),
|
||
|
|
]
|