Skip to content

Commit

Permalink
Add forgotten migration
Browse files Browse the repository at this point in the history
  • Loading branch information
MattyMay committed Nov 22, 2024
1 parent 33e1b68 commit b20991d
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions autograder/core/migrations/0110_alter_extralatedays_user.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Generated by Django 3.2.2 on 2024-11-22 02:00

from django.conf import settings
from django.db import migrations, models
import django.db.models.deletion


class Migration(migrations.Migration):

dependencies = [
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
('core', '0109_late_days_change'),
]

operations = [
migrations.AlterField(
model_name='extralatedays',
name='user',
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='late_days', to=settings.AUTH_USER_MODEL),
),
]

0 comments on commit b20991d

Please sign in to comment.