Skip to content

Commit ef70271

Browse files
committed
add migration
1 parent dc474b3 commit ef70271

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 13:25
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('submissions', '0028_alter_submission_pending_status'),
10+
]
11+
12+
operations = [
13+
migrations.AddField(
14+
model_name='submission',
15+
name='do_not_record',
16+
field=models.BooleanField(default=False, help_text='If true, the submission will not be recorded.', verbose_name='do not record'),
17+
),
18+
]

0 commit comments

Comments
 (0)