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.
20 lines
565 B
20 lines
565 B
# Generated by Django 4.2.11 on 2024-05-01 13:07
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('soustredeni', '0001_split_from_seminar'),
|
|
('galerie', '0011_pre_split_soustredeni'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='galerie',
|
|
name='soustredeni',
|
|
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.PROTECT, to='soustredeni.soustredeni'),
|
|
),
|
|
]
|
|
|