# 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="Companies",
            fields=[
                (
                    "id",
                    models.BigAutoField(
                        auto_created=True,
                        primary_key=True,
                        serialize=False,
                        verbose_name="ID",
                    ),
                ),
                ("is_active", models.BooleanField(default=True)),
                ("created_at", models.DateTimeField(auto_now_add=True)),
                ("updated_at", models.DateTimeField(auto_now=True)),
                ("name", models.CharField(max_length=100)),
                ("title", models.CharField(max_length=100)),
                ("category", models.CharField(max_length=250)),
                ("location", models.CharField(max_length=250)),
                ("service_type", models.CharField(max_length=250)),
                ("employee_size", models.PositiveIntegerField()),
                ("profile_picure_url", models.ImageField(upload_to="company")),
                ("cover_picture_url", models.ImageField(upload_to="company")),
                ("cover_picture_title", models.CharField(max_length=200)),
                ("descriptions", models.TextField()),
                ("website", models.CharField(max_length=200)),
                ("phone_number", models.CharField(max_length=20)),
                (
                    "contact_number",
                    models.CharField(blank=True, max_length=15, null=True),
                ),
            ],
            options={
                "verbose_name_plural": "companies",
                "ordering": ["name"],
            },
        ),
    ]
