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.
24 lines
698 B
24 lines
698 B
1 week ago
|
# Generated by Django 4.2.13 on 2024-11-05 21:07
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('soustredeni', '0011_soustredeni_kontaktnicek_pdf'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='soustredeni',
|
||
|
name='kontaktnicek_vcf',
|
||
|
field=models.FileField(blank=True, upload_to='kontaktnicky', verbose_name='kontaktníček vcf'),
|
||
|
),
|
||
|
migrations.AlterField(
|
||
|
model_name='soustredeni',
|
||
|
name='kontaktnicek_pdf',
|
||
|
field=models.FileField(blank=True, upload_to='kontaktnicky', verbose_name='kontaktníček pdf'),
|
||
|
),
|
||
|
]
|