Skip to content

Commit

Permalink
Fix migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
MasloMaslane committed May 5, 2024
1 parent 2a86889 commit c73fb71
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 18 deletions.
18 changes: 0 additions & 18 deletions oioioi/programs/migrations/0020_testreport_result_percentage.py

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Generated by Django 4.2.11 on 2024-05-05 14:37

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('programs', '0019_add_limits_override'),
]

operations = [
migrations.AddField(
model_name='testreport',
name='result_percentage_denominator',
field=models.IntegerField(blank=True, null=True),
),
migrations.AddField(
model_name='testreport',
name='result_percentage_numerator',
field=models.IntegerField(blank=True, null=True),
),
]

0 comments on commit c73fb71

Please sign in to comment.