Cuser models

This commit is contained in:
2025-10-05 15:44:08 -06:00
parent 0c6dd348e7
commit 5c3df2f34c
6 changed files with 381 additions and 72 deletions

View File

@@ -0,0 +1,20 @@
# Generated by Django 5.2.3 on 2025-10-05 17:47
import django.db.models.deletion
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('cuser', '0003_alter_customuser_rfc'),
('customs', '0015_partida_updated_at'),
]
operations = [
migrations.AlterField(
model_name='customuser',
name='rfc',
field=models.ForeignKey(blank=True, help_text='RFC associated with the user if they are an importer', null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='users', to='customs.importador'),
),
]