# Generated by Django 4.2.1 on 2023-06-06 11:00

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('admin_panel', '0014_alter_helpsupport_user'),
    ]

    operations = [
        migrations.CreateModel(
            name='CompatibilityChineseZodiac',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('female_chinese_zodiac', models.CharField(max_length=100, null=True)),
                ('male_chinese_zodiac', models.CharField(max_length=100, null=True)),
                ('compatibility_score', models.IntegerField(null=True)),
                ('tagline', models.CharField(max_length=250, null=True)),
                ('description', models.TextField(null=True)),
                ('status', models.BooleanField(default=True)),
                ('created_at', models.DateTimeField(auto_now_add=True)),
                ('updated_at', models.DateTimeField(auto_now=True)),
                ('end_date', models.DateTimeField(null=True)),
            ],
            options={
                'db_table': 'compatibility_chinese_zodiacs',
            },
        ),
        migrations.CreateModel(
            name='CompatibilityFiveElements',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('female_element_name', models.CharField(max_length=100, null=True)),
                ('male_element_name', models.CharField(max_length=100, null=True)),
                ('compatibility_score', models.IntegerField(null=True)),
                ('tagline', models.CharField(max_length=250, null=True)),
                ('description', models.TextField(null=True)),
                ('status', models.BooleanField(default=True)),
                ('created_at', models.DateTimeField(auto_now_add=True)),
                ('updated_at', models.DateTimeField(auto_now=True)),
                ('end_date', models.DateTimeField(null=True)),
            ],
            options={
                'db_table': 'compatibility_five_elements',
            },
        ),
        migrations.CreateModel(
            name='CompatibilityHoroscope',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('female_horoscope', models.CharField(max_length=100, null=True)),
                ('male_horoscope', models.CharField(max_length=100, null=True)),
                ('compatibility_score', models.IntegerField(null=True)),
                ('tagline', models.CharField(max_length=250, null=True)),
                ('description', models.TextField(null=True)),
                ('status', models.BooleanField(default=True)),
                ('created_at', models.DateTimeField(auto_now_add=True)),
                ('updated_at', models.DateTimeField(auto_now=True)),
                ('end_date', models.DateTimeField(null=True)),
            ],
            options={
                'db_table': 'compatibility_horoscope',
            },
        ),
        migrations.CreateModel(
            name='CompatibilityMBTI',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('female_mbti_name', models.CharField(max_length=100, null=True)),
                ('male_mbti_name', models.CharField(max_length=100, null=True)),
                ('compatibility_score', models.IntegerField(null=True)),
                ('tagline', models.CharField(max_length=250, null=True)),
                ('description', models.TextField(null=True)),
                ('status', models.BooleanField(default=True)),
                ('created_at', models.DateTimeField(auto_now_add=True)),
                ('updated_at', models.DateTimeField(auto_now=True)),
                ('end_date', models.DateTimeField(null=True)),
            ],
            options={
                'db_table': 'compatibility_mbti',
            },
        ),
    ]
