Skip to content

Commit c22d033

Browse files
committed
add missing migration
1 parent 13492ee commit c22d033

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.8 on 2025-12-14 14:29
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('submissions', '0029_submission_do_not_record'),
10+
]
11+
12+
operations = [
13+
migrations.AddField(
14+
model_name='submissiontype',
15+
name='is_recordable',
16+
field=models.BooleanField(default=True, help_text='If true, the proposals of this type can be recorded.', verbose_name='is recordable'),
17+
),
18+
]

0 commit comments

Comments
 (0)