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.
24 lines
778 B
24 lines
778 B
# Generated by Django 2.2.24 on 2021-09-06 01:05
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('seminar', '0097_auto_20210903_0112'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='hodnoceni',
|
|
name='body',
|
|
field=models.DecimalField(blank=True, decimal_places=1, max_digits=8, null=True, verbose_name='body'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='hodnoceni',
|
|
name='cislo_body',
|
|
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.PROTECT, related_name='hodnoceni', to='seminar.Cislo', verbose_name='číslo pro body'),
|
|
),
|
|
]
|
|
|