Skip to content

Commit bdc1f4c

Browse files
authored
fix(migration): Add missing migrations (#1463)
1 parent 5586caa commit bdc1f4c

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Generated by Django 5.2.5 on 2025-12-09 12:19
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('base', '0002_alter_event_header_image_alter_event_locale_and_more'),
10+
]
11+
12+
operations = [
13+
migrations.AlterField(
14+
model_name='question',
15+
name='type',
16+
field=models.CharField(choices=[('N', 'Number'), ('S', 'Text (one line)'), ('T', 'Multiline text'), ('B', 'Confirm Checkbox'), ('C', 'Radio button (Choose one option)'), ('M', 'Checkbox (Choose one or several options)'), ('F', 'File upload'), ('D', 'Date'), ('H', 'Time'), ('W', 'Date and time'), ('CC', 'Country code (ISO 3166-1 alpha-2)'), ('TEL', 'Phone number'), ('DES', 'Text field')], max_length=5, verbose_name='Question type'),
17+
),
18+
]

0 commit comments

Comments
 (0)