# Generated by Django 4.0.10 on 2024-03-15 06:57

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('zeeprimeapp', '0020_alter_userprofile_earning_rate'),
    ]

    operations = [
        migrations.AlterField(
            model_name='userprofile',
            name='earning_rate',
            field=models.CharField(choices=[('2.5%', '2.5%'), ('3%', '3%'), ('4%', '4%')], default='2.5%', max_length=50),
        ),
        migrations.AlterField(
            model_name='userprofile',
            name='plan_type',
            field=models.CharField(choices=[('PREMIUM PLAN', 'PREMIUM PLAN'), ('DIAMOND PLAN', 'DIAMOND PLAN'), ('GOLD PLAN', 'GOLD PLAN')], default='PREMIUM PLAN', max_length=50),
        ),
    ]
