20 lines
586 B
Python
20 lines
586 B
Python
# Generated by Django 5.2.3 on 2025-08-16 16:00
|
|
|
|
import django.db.models.deletion
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('customs', '0009b_poblar_importadores'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='pedimento',
|
|
name='contribuyente',
|
|
field=models.ForeignKey(blank=True, help_text='Contribuyente asociado al pedimento', null=True, on_delete=django.db.models.deletion.CASCADE, related_name='pedimentos', to='customs.importador'),
|
|
),
|
|
]
|