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.
30 lines
795 B
30 lines
795 B
1 year ago
|
# Generated by Django 2.2.28 on 2023-08-09 17:37
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
import django.db.models.deletion
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('seminar', '0118_smazani_tvorby'),
|
||
|
('odevzdavatko', '0001_initial')
|
||
|
]
|
||
|
|
||
|
run_before = [
|
||
|
('seminar', '0120_smazani_odevzdavatka'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.SeparateDatabaseAndState(
|
||
|
state_operations=[
|
||
|
migrations.AlterField(
|
||
|
model_name='reseninode',
|
||
|
name='reseni',
|
||
|
field=models.ForeignKey(on_delete=django.db.models.deletion.PROTECT, to='odevzdavatko.Reseni', verbose_name='reseni'),
|
||
|
),
|
||
|
],
|
||
|
database_operations=[],
|
||
|
),
|
||
|
]
|