19 lines
410 B
Python
19 lines
410 B
Python
# Generated by Django 4.0 on 2022-05-21 15:39
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('users', '0003_alter_customuser_registeredexos'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='customuser',
|
|
name='id_code',
|
|
field=models.CharField(default='', max_length=50),
|
|
),
|
|
]
|