# Generated by Django 5.2.7 on 2025-11-09 12:45

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('ad_static', '0006_remove_admin_confirm_password'),
    ]

    operations = [
        migrations.CreateModel(
            name='Service',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('service_title', models.CharField(max_length=255)),
                ('description', models.TextField(blank=True, null=True)),
                ('image', models.ImageField(blank=True, null=True, upload_to='services/images/')),
                ('slug', models.SlugField(blank=True, unique=True)),
                ('detail_page_title', models.CharField(blank=True, max_length=255, null=True)),
                ('content', models.TextField(blank=True, null=True)),
                ('service_type', models.CharField(blank=True, choices=[(1, 'Commercial'), (2, 'Retail'), (3, 'Residential')], max_length=50, null=True)),
                ('featured_image', models.ImageField(blank=True, null=True, upload_to='services/featured/')),
                ('status', models.BooleanField(default=True)),
                ('created_at', models.DateTimeField(auto_now_add=True)),
                ('updated_at', models.DateTimeField(auto_now=True)),
            ],
        ),
    ]
