Skip to content

Commit

Permalink
fix: conflicting migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
francisvaut committed Mar 12, 2024
1 parent 0db0959 commit fbdec72
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 20 deletions.
18 changes: 0 additions & 18 deletions backend/api/migrations/0005_alter_project_max_score.py

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Generated by Django 5.0.2 on 2024-03-12 20:25
# Generated by Django 5.0.2 on 2024-03-12 21:45

import django.utils.timezone
from django.db import migrations, models


class Migration(migrations.Migration):
dependencies = [
("api", "0005_alter_project_max_score"),
("api", "0004_submission_structure_checks_passed_extrachecksresult"),
]

operations = [
Expand All @@ -15,6 +15,11 @@ class Migration(migrations.Migration):
name="locked_groups",
field=models.BooleanField(default=False),
),
migrations.AlterField(
model_name="project",
name="max_score",
field=models.PositiveSmallIntegerField(default=20),
),
migrations.AlterField(
model_name="project",
name="start_date",
Expand Down

0 comments on commit fbdec72

Please sign in to comment.