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.
19 lines
571 B
19 lines
571 B
# Generated by Django 2.2.12 on 2020-05-06 17:52
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('seminar', '0082_auto_20200506_1951'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='treenode',
|
|
name='first_child',
|
|
field=models.OneToOneField(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='father_of_first', to='seminar.TreeNode', verbose_name='první potomek'),
|
|
),
|
|
]
|
|
|