All checks were successful
Deploy Quartz site to GitHub Pages / build (push) Successful in 2m29s
19 lines
434 B
Python
19 lines
434 B
Python
# Generated by Django 6.0 on 2025-12-25 12:26
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('quiz', '0011_file'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='file',
|
|
name='file_content',
|
|
field=models.FileField(blank=True, help_text='Uploaded file content', null=True, upload_to='uploads/'),
|
|
),
|
|
]
|