# Generated by Django 5.2 on 2026-04-26 10:36

from django.db import migrations, models


class Migration(migrations.Migration):

    initial = True

    dependencies = []

    operations = [
        migrations.CreateModel(
            name="JobForm",
            fields=[
                (
                    "id",
                    models.BigAutoField(
                        auto_created=True,
                        primary_key=True,
                        serialize=False,
                        verbose_name="ID",
                    ),
                ),
                ("first_name", models.CharField(max_length=100)),
                ("last_name", models.CharField(max_length=100)),
                ("contact", models.CharField(max_length=15)),
                ("message", models.TextField()),
                ("email", models.EmailField(max_length=254)),
                ("district", models.CharField(max_length=50)),
                ("file", models.FileField(upload_to="cv/")),
                ("uploaded_at", models.DateTimeField(auto_now_add=True)),
            ],
            options={
                "verbose_name_plural": "ContactsInfo",
                "ordering": ["first_name"],
            },
        ),
    ]
