# Generated by Django 5.2.7 on 2025-10-14 04:16

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('admin_panel', '0011_alter_subscription_type'),
    ]

    operations = [
        migrations.CreateModel(
            name='ContentPages',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('page_type', models.CharField(max_length=100, null=True)),
                ('title', models.CharField(max_length=244, null=True)),
                ('content', models.TextField()),
                ('user_type', models.CharField(max_length=100, null=True)),
                ('status', models.BooleanField(default=True, null=True)),
                ('start_date', models.DateTimeField(auto_now_add=True)),
                ('end_date', models.DateTimeField(null=True)),
            ],
            options={
                'db_table': 'content_pages',
            },
        ),
    ]
