Web M&M
https://mam.matfyz.cz
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
606 B
19 lines
606 B
# Generated by Django 2.2.24 on 2021-11-29 22:54
|
|
|
|
from django.db import migrations, models
|
|
import seminar.models.tvorba
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('seminar', '0099_auto_20210916_1509'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='cislo',
|
|
name='pdf',
|
|
field=models.FileField(blank=True, help_text='PDF čísla, které si mohou řešitelé stáhnout', null=True, storage=seminar.models.tvorba.OverwriteStorage(), upload_to=seminar.models.tvorba.cislo_pdf_filename, verbose_name='pdf'),
|
|
),
|
|
]
|
|
|