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
561 B
20 lines
561 B
# Generated by Django 4.2.16 on 2024-10-30 13:18
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('tvorba', '0001_tvorba_create'),
|
|
('various', '0004_tvorba_pre'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='nastaveni',
|
|
name='aktualni_cislo',
|
|
field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.PROTECT, to='tvorba.cislo', verbose_name='Aktuální číslo'),
|
|
),
|
|
]
|
|
|