Aktuální sous jsme chtěli blank=True
This commit is contained in:
parent
1a2bef328b
commit
aa997bfcd8
2 changed files with 2 additions and 2 deletions
|
@ -15,6 +15,6 @@ class Migration(migrations.Migration):
|
||||||
migrations.AddField(
|
migrations.AddField(
|
||||||
model_name='nastaveni',
|
model_name='nastaveni',
|
||||||
name='aktualni_sous',
|
name='aktualni_sous',
|
||||||
field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.PROTECT, to='soustredeni.soustredeni', verbose_name='Aktuálně připravovaný sous'),
|
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.PROTECT, to='soustredeni.soustredeni', verbose_name='Aktuálně připravovaný sous'),
|
||||||
),
|
),
|
||||||
]
|
]
|
||||||
|
|
|
@ -28,7 +28,7 @@ class Nastaveni(SingletonModel):
|
||||||
|
|
||||||
aktualni_sous = models.ForeignKey(
|
aktualni_sous = models.ForeignKey(
|
||||||
"soustredeni.Soustredeni", verbose_name='Aktuálně připravovaný sous',
|
"soustredeni.Soustredeni", verbose_name='Aktuálně připravovaný sous',
|
||||||
null=True, blank=False, on_delete=models.PROTECT,
|
null=True, blank=True, on_delete=models.PROTECT,
|
||||||
)
|
)
|
||||||
|
|
||||||
@property
|
@property
|
||||||
|
|
Loading…
Reference in a new issue