# Generated by Django 4.2.9 on 2026-06-23 10:41

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('dash_app', '0011_contactus'),
    ]

    operations = [
        migrations.CreateModel(
            name='Application',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('name', models.CharField(max_length=200)),
                ('email', models.EmailField(max_length=254)),
                ('phone', models.CharField(max_length=20)),
                ('qualification', models.CharField(choices=[('10th', '10th'), ('12th', '12th / Plus Two'), ('degree', 'Degree'), ('pg', 'Post Graduate')], max_length=50)),
                ('course', models.CharField(choices=[('graphics', 'Creative Graphics'), ('marketing', 'Digital Marketing'), ('uiux', 'UI/UX Designing & Development'), ('fullstack', 'Fullstack Development'), ('multimedia', 'Videography & Advanced Editing'), ('nodejs', 'Node.js Development'), ('python', 'Python Development')], max_length=50)),
                ('dob', models.DateField()),
                ('location', models.CharField(choices=[('wayanad', 'Wayanad'), ('kozhikode', 'Kozhikode'), ('kannur', 'Kannur'), ('malappuram', 'Malappuram'), ('other', 'Other')], max_length=50)),
                ('created_at', models.DateTimeField(auto_now_add=True)),
            ],
            options={
                'verbose_name': 'Application',
                'verbose_name_plural': 'Applications',
                'db_table': 'dash_application',
                'ordering': ['-created_at'],
            },
        ),
    ]
