# Generated by Django 3.2 on 2022-08-13 09:05

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('zeeprimeapp', '0014_alter_userprofile_earning_rate_and_more'),
    ]

    operations = [
        migrations.AlterField(
            model_name='userprofile',
            name='earning_rate',
            field=models.CharField(choices=[('1.5%', '1.5%'), ('2.3%', '2.3%'), ('3.5%', '3.5%'), ('5.5%', '5.5%')], default='1.5%', max_length=50),
        ),
        migrations.AlterField(
            model_name='userprofile',
            name='plan_type',
            field=models.CharField(choices=[('GENERAL PLAN', 'GENERAL PLAN'), ('THRILLER PLAN', 'THRILLER PLAN'), ('PRO PLAN', 'PRO PLAN'), ('EXPERT PLAN', 'EXPERT PLAN')], default='GENERAL PLAN', max_length=50),
        ),
    ]
