29 lines
1.2 KiB
Python
29 lines
1.2 KiB
Python
# Generated by Django 5.2.15 on 2026-07-19 04:42
|
||
|
||
from django.db import migrations, models
|
||
|
||
|
||
class Migration(migrations.Migration):
|
||
|
||
dependencies = [
|
||
('projects', '0003_merge_goals_and_lock_visibility'),
|
||
]
|
||
|
||
operations = [
|
||
migrations.AlterField(
|
||
model_name='projectbrief',
|
||
name='budget_range',
|
||
field=models.CharField(blank=True, choices=[('under_5k', 'Under $5,000'), ('5k_15k', '$5,000 – $15,000'), ('15k_50k', '$15,000 – $50,000'), ('50k_plus', '$50,000+'), ('not_sure', 'Not sure yet')], default='', max_length=32),
|
||
),
|
||
migrations.AlterField(
|
||
model_name='projectbrief',
|
||
name='category',
|
||
field=models.CharField(blank=True, choices=[('web', 'Web development'), ('data', 'Data & analytics'), ('research', 'Research'), ('medical_imaging', 'Medical imaging'), ('workflow', 'Workflow automation'), ('other', 'Other')], default='', max_length=32),
|
||
),
|
||
migrations.AlterField(
|
||
model_name='projectbrief',
|
||
name='description',
|
||
field=models.TextField(blank=True, default='', help_text='Project scope, context, and goals combined.'),
|
||
),
|
||
]
|