Skip to content

Commit

Permalink
fix merge
Browse files Browse the repository at this point in the history
  • Loading branch information
PJDeSmijter committed Mar 10, 2024
1 parent fecde1f commit ec129d7
Showing 1 changed file with 26 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Generated by Django 5.0.2 on 2024-03-02 21:07

from django.db import migrations, models


class Migration(migrations.Migration):
dependencies = [
('submissions', '0001_initial'),
]

operations = [
migrations.AlterField(
model_name='submissions',
name='file',
field=models.FileField(null=True,
upload_to='uploads/<django.db.models.fields.related.ForeignKey>/<django.db.models'
'.fields.IntegerField>/'),
),
migrations.AlterField(
model_name='submissions',
name='output_test',
field=models.FileField(null=True,
upload_to='uploads/<django.db.models.fields.related.ForeignKey>/<django.db.models'
'.fields.IntegerField>/output_test/'),
),
]

0 comments on commit ec129d7

Please sign in to comment.