# Generated by Django 2.2.28 on 2023-07-31 17:54
from django . db import migrations , models
import django . db . models . deletion
class Migration ( migrations . Migration ) :
dependencies = [
( ' korektury ' , ' 0020_lepsi_popis_nazvu_PDF_v_adminu ' ) ,
( ' personalni ' , ' 0002_initial ' ) ,
]
run_before = [
( ' seminar ' , ' 0116_smazani_personalniho ' ) ,
]
operations = [
migrations . SeparateDatabaseAndState (
state_operations = [
migrations . AlterField (
model_name = ' komentar ' ,
name = ' autor ' ,
field = models . ForeignKey ( blank = True , help_text = ' Autor komentáře ' , null = True , on_delete = django . db . models . deletion . SET_NULL , to = ' personalni.Organizator ' ) ,
) ,
migrations . AlterField (
model_name = ' korekturovanepdf ' ,
name = ' org ' ,
field = models . ForeignKey ( blank = True , default = None , help_text = ' Zodpovědný organizátor za obsah ' , null = True , on_delete = django . db . models . deletion . SET_NULL , to = ' personalni.Organizator ' ) ,
) ,
migrations . AlterField (
model_name = ' oprava ' ,
name = ' autor ' ,
field = models . ForeignKey ( blank = True , help_text = ' Autor opravy ' , null = True , on_delete = django . db . models . deletion . SET_NULL , to = ' personalni.Organizator ' ) ,
) ,
] ,
database_operations = [ ] ,
) ,
]