# Generated by Django 5.2.7 on 2025-10-09 08:58

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('admin_panel', '0008_adminnotification'),
    ]

    operations = [
        migrations.CreateModel(
            name='Subscription',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('plane_name', models.CharField(max_length=255)),
                ('description', models.CharField(max_length=255, null=True)),
                ('price', models.IntegerField(max_length=255, null=True)),
                ('end_date', models.DateField()),
                ('start_date', models.DateField()),
                ('created_at', models.DateField(auto_now_add=True)),
                ('updated_at', models.DateField(auto_now=True)),
                ('is_active', models.BooleanField(default=True)),
                ('is_cancelled', models.BooleanField(default=False)),
                ('auto_renew', models.BooleanField(default=True)),
            ],
            options={
                'db_table': 'subscription',
            },
        ),
    ]
