# Generated by Django 4.1.7 on 2024-01-22 16:52

from django.db import migrations, models


class Migration(migrations.Migration):

    initial = True

    dependencies = [
    ]

    operations = [
        migrations.CreateModel(
            name='GestorAutorizado',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('nombres', models.CharField(max_length=60)),
                ('apellidos', models.CharField(max_length=60)),
                ('cedula', models.CharField(max_length=13)),
                ('concesionario', models.CharField(max_length=60)),
                ('ruc_empresa', models.CharField(max_length=13)),
                ('canton', models.CharField(max_length=60)),
                ('fecha_emision', models.DateField()),
                ('fecha_caducidad', models.DateField()),
            ],
        ),
    ]
