Skip to content

Commit

Permalink
Fix migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
reivvax committed Dec 22, 2024
1 parent 27a3d99 commit 24576af
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions oioioi/problems/migrations/0034_alter_difficultytag_options.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Generated by Django 4.2.17 on 2024-12-22 17:34

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
('problems', '0033_populate_aggregated_tag_proposals'),
]

operations = [
migrations.AlterModelOptions(
name='difficultytag',
options={'ordering': ['pk'], 'verbose_name': 'difficulty tag', 'verbose_name_plural': 'difficulty tags'},
),
]

0 comments on commit 24576af

Please sign in to comment.