# Generated by Django 4.1.3 on 2022-12-22 08:03

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('projects', '0005_project_status_alter_project_category_and_more'),
    ]

    operations = [
        migrations.AlterField(
            model_name='project',
            name='status',
            field=models.CharField(choices=[('funded', 'Funded'), ('live', 'Live'), ('Not Live yet', 'Coming Soon')], max_length=200, null=True),
        ),
    ]
