Skip to content

Commit

Permalink
Add missing migration
Browse files Browse the repository at this point in the history
Forgot to do this in b757abd
  • Loading branch information
knatten committed Sep 22, 2024
1 parent 53388a0 commit f32a76b
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 f32a76b

Please sign in to comment.