Skip to content

Commit

Permalink
Added migration
Browse files Browse the repository at this point in the history
  • Loading branch information
SZonkil committed Dec 13, 2023
1 parent 7be6d64 commit 5fe2627
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions oioioi/programs/migrations/0020_testreport_result_percentage.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 4.2.7 on 2023-12-13 16:25

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',
field=models.FloatField(blank=True, null=True),
),
]

0 comments on commit 5fe2627

Please sign in to comment.