# Generated by Django 4.2.1 on 2023-06-06 12:41

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('admin_panel', '0015_compatibilitychinesezodiac_compatibilityfiveelements_and_more'),
    ]

    operations = [
        migrations.CreateModel(
            name='AdvisorCompatibilityHoroscope',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('advisor', models.CharField(max_length=100, null=True)),
                ('user', models.CharField(max_length=100, null=True)),
                ('compatibility_score', models.IntegerField(null=True)),
                ('tagline', models.CharField(max_length=250, 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': 'advisor_compatibility_horoscope',
            },
        ),
        migrations.CreateModel(
            name='AdvisorCompatibilityMBTI',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('advisor', models.CharField(max_length=100, null=True)),
                ('user', models.CharField(max_length=100, null=True)),
                ('compatibility_score', models.IntegerField(null=True)),
                ('tagline_for_relationship', models.CharField(max_length=250, 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': 'advisor_compatibility_mbti',
            },
        ),
    ]
