Skip to content

Commit c8cf97d

Browse files
migrations for #80
1 parent 6e9c011 commit c8cf97d

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 5.2.4 on 2025-08-12 07:45
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('courses', '0020_remove_project_points_to_pass_and_more'),
10+
]
11+
12+
operations = [
13+
migrations.AddField(
14+
model_name='course',
15+
name='min_projects_to_pass',
16+
field=models.IntegerField(default=1, help_text='The minimum number of projects to pass the course.'),
17+
),
18+
]

0 commit comments

Comments
 (0)