Skip to content

Commit 82bea9d

Browse files
committed
Add missing migration
1 parent 945cc3f commit 82bea9d

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Generated by Django 4.2.27 on 2026-02-13 10:23
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('feedback', '0025_alter_exercise_parent_name'),
10+
]
11+
12+
operations = [
13+
migrations.AlterField(
14+
model_name='feedback',
15+
name='response_notify',
16+
field=models.PositiveSmallIntegerField(choices=[(0, 'No notification'), (1, 'Normal notification'), (2, 'Important notification'), (10, 'Remove notification')], default=0, verbose_name='Response notify'),
17+
),
18+
]

0 commit comments

Comments
 (0)