Mudanza de repo
This commit is contained in:
27
api/customs/migrations/0007_regimen.py
Normal file
27
api/customs/migrations/0007_regimen.py
Normal file
@@ -0,0 +1,27 @@
|
||||
# Generated by Django 5.2.3 on 2025-08-15 18:00
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('customs', '0006_pedimento_pedimento_app'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='Regimen',
|
||||
fields=[
|
||||
('id', models.AutoField(primary_key=True, serialize=False)),
|
||||
('claveped', models.CharField(max_length=4)),
|
||||
('regimenped', models.CharField(max_length=4)),
|
||||
('tipo', models.IntegerField()),
|
||||
],
|
||||
options={
|
||||
'verbose_name': 'Regimen',
|
||||
'verbose_name_plural': 'Regimenes',
|
||||
'db_table': 'regimen',
|
||||
},
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user