# Generated by Django 4.1.7 on 2023-11-09 14:05

from django.db import migrations, models
import django.db.models.deletion


class Migration(migrations.Migration):

    dependencies = [
        ('Consultas', '0020_alter_placas_numero_pago'),
        ('Costos', '0013_especies_motivo'),
    ]

    operations = [
        migrations.CreateModel(
            name='CambioServicio',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('numero_tramite', models.CharField(max_length=12)),
                ('fecha_tramite', models.DateField()),
                ('tipo_proceso', models.CharField(default='CAMBIO DE SERVICIO', max_length=30)),
                ('centro_atencion', models.CharField(default='GAD MUNICIPAL DEL CANTÓN EL GUABO', max_length=40)),
                ('cedula', models.CharField(max_length=13)),
                ('propietario', models.CharField(max_length=60)),
                ('numero_placa', models.CharField(max_length=10)),
                ('numero_comprobante', models.CharField(max_length=30)),
                ('fecha_pago', models.DateField()),
                ('valor', models.CharField(max_length=30)),
                ('banco', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='Consultas.banco')),
            ],
        ),
    ]
