19 lines
438 B
Python
19 lines
438 B
Python
# Generated by Django 5.2.3 on 2025-07-31 16:20
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('cuser', '0002_alter_customuser_rfc'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='customuser',
|
|
name='rfc',
|
|
field=models.CharField(blank=True, help_text='RFC of the user', max_length=1, null=True),
|
|
),
|
|
]
|