29 lines
954 B
Python
29 lines
954 B
Python
# Generated by Django 5.2.3 on 2025-10-02 15:04
|
|
|
|
import django.db.models.deletion
|
|
import django.db.models.fields
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
('customs', '0011_cove_acuse_cove_descargado_cove_cove_descargado_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Task',
|
|
fields=[
|
|
('task_id', models.UUIDField(default=django.db.models.fields.UUIDField, primary_key=True, serialize=False)),
|
|
('timestamp', models.DateTimeField(auto_now_add=True)),
|
|
('message', models.TextField()),
|
|
('status', models.CharField(max_length=50)),
|
|
('result', models.TextField(blank=True, null=True)),
|
|
('pedimento', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='customs.pedimento')),
|
|
],
|
|
),
|
|
]
|