Skip to content

Commit

Permalink
Fix migration
Browse files Browse the repository at this point in the history
  • Loading branch information
davepeck committed Apr 3, 2024
1 parent 46c1e0e commit 9711133
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/vb/migrations/0001_initial.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 5.0.3 on 2024-04-02 23:08
# Generated by Django 5.0.3 on 2024-04-03 00:51

import django.core.validators
import django.db.models.deletion
Expand Down Expand Up @@ -64,7 +64,7 @@ class Migration(migrations.Migration):
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('taken_at', models.DateTimeField(auto_now_add=True)),
('kind', models.CharField(choices=[('first_visit', 'First Visit'), ('check_registration', 'Check Registration'), ('register', 'Register')])),
('kind', models.CharField(choices=[('first_visit', 'First Visit'), ('check_registration', 'Check Registration'), ('register', 'Register')], max_length=32)),
('contest', models.ForeignKey(default=None, null=True, on_delete=django.db.models.deletion.CASCADE, to='vb.contest')),
('student', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='vb.student')),
],
Expand Down

0 comments on commit 9711133

Please sign in to comment.