# Generated by Django 4.1.3 on 2022-12-22 07:58

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('projects', '0004_project_category_project_nobackers_project_pledged_and_more'),
    ]

    operations = [
        migrations.AddField(
            model_name='project',
            name='status',
            field=models.CharField(choices=[('funded', 'Funded'), ('live', 'Live'), ('canceled', 'Canceled')], max_length=200, null=True),
        ),
        migrations.AlterField(
            model_name='project',
            name='category',
            field=models.CharField(choices=[('Product Design', 'Product Design'), ('Accessories', 'Accessories'), ('Gadgets', 'Gadgets'), ('Sound', 'Sound'), ('DIY Electronics', 'DIY Electronics'), ('Robots', 'Robots'), ('Technology', 'Technology'), ('3D Printing', '3D Printing'), ('Camera Equipment', 'Camera Equipmen'), ('Fabrication Tools', 'Fabrication Tools'), ('Gaming Hardware', 'Gaming Hardware'), ('Hardware', 'Hardware'), ('Makerspaces', 'Makerspaces'), ('Space Exploration', 'Space Exploration'), ('Tabletop Games', 'Tabletop Games'), ('Wearables', 'Wearables')], max_length=200, null=True),
        ),
        migrations.AlterField(
            model_name='project',
            name='platform',
            field=models.CharField(choices=[('kickstarter', 'Kickstarter'), ('indiegogo', 'Indiegogo')], default='', max_length=200, null=True),
        ),
    ]
