# Generated by Django 4.1.1 on 2022-09-18 09:58

from django.db import migrations, models
import django.db.models.deletion


class Migration(migrations.Migration):

    initial = True

    dependencies = [
        ('addons', '0001_initial'),
    ]

    operations = [
        migrations.CreateModel(
            name='Location',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('name', models.CharField(default=None, help_text='Type: String, Values: Enter Location Name.', max_length=96)),
                ('slug', models.SlugField(blank=True, default=None, help_text='Type: String, Values: Enter Location Slug.', max_length=96, null=True, unique=True)),
                ('title', models.CharField(blank=True, help_text='Type: String, Values: Enter Location Meta Title.', max_length=96, null=True)),
                ('description', models.TextField(blank=True, help_text='Type: String, Values: Enter Location Meta Description.', max_length=180, null=True)),
                ('keyword', models.CharField(blank=True, help_text='Type: String, Values: Enter Location Meta Keywords.', max_length=180, null=True)),
                ('created_at', models.DateTimeField(auto_now_add=True)),
                ('updated_at', models.DateTimeField(auto_now=True)),
                ('city', models.ForeignKey(default=None, help_text='Type: Int, values: Select City Name.', on_delete=django.db.models.deletion.CASCADE, related_name='LOCATIONCITY', to='addons.city', verbose_name='City Name')),
            ],
            options={
                'verbose_name_plural': 'Location',
            },
        ),
    ]
