# Generated by Django 3.2 on 2021-05-12 10:07

from django.db import migrations

def insertData(apps, schema_editor):
    Plan = apps.get_model('authenticate', 'Plan')
    Plan.objects.create(
        name='Free',
        max_institutes_for_user=0,
        max_collaborators_per_institute=0,
        max_question_bank_for_user=100,
        max_questions_per_question_bank=1000
    )


class Migration(migrations.Migration):

    dependencies = [
        ('authenticate', '0004_auto_20210512_1430'),
    ]

    operations = [
        migrations.RunPython(insertData)
    ]
