Skip to content

Commit

Permalink
Merge pull request #362 from knatten/missing-migration
Browse files Browse the repository at this point in the history
Add missing migration
  • Loading branch information
knatten authored Sep 22, 2024
2 parents 53388a0 + f32a76b commit 90af545
Showing 1 changed file with 23 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Generated by Django 4.2.15 on 2024-09-22 13:35

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('quiz', '0021_remove_usersanswer_ip'),
]

operations = [
migrations.AlterField(
model_name='question',
name='result',
field=models.CharField(choices=[('OK', 'The program is guaranteed to output:'), ('CE', 'The program has a compilation error'), ('UD', 'The program is (or may be) undefined'), ('US', 'The program is unspecified / implementation defined')], default='OK', max_length=2),
),
migrations.AlterField(
model_name='usersanswer',
name='result',
field=models.CharField(choices=[('OK', 'The program is guaranteed to output:'), ('CE', 'The program has a compilation error'), ('UD', 'The program is (or may be) undefined'), ('US', 'The program is unspecified / implementation defined')], default='OK', max_length=2),
),
]

0 comments on commit 90af545

Please sign in to comment.