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.
 
 
 
 
 
 

29 lines
788 B

# -*- coding: utf-8 -*-
# Generated by Django 1.11.20 on 2019-05-29 03:26
from __future__ import unicode_literals
from django.db import migrations
def vytvor_pohadkanode(apps, schema_editor):
Pohadka = apps.get_model('seminar', 'Pohadka')
PohadkaNode = apps.get_model('seminar', 'PohadkaNode')
Text = apps.get_model('seminar', 'Text')
TextNode = apps.get_model('seminar', 'TextNode')
for p in Pohadka.objects.all():
t = Text.objects.create(na_web = p.text)
t.save()
tn = TextNode.objects.create(text = t)
tn.save()
pn = PohadkaNode.objects.create(pohadka = p, first_child = tn)
pn.save()
class Migration(migrations.Migration):
dependencies = [
('seminar', 'fix_0058'),
]
operations = [
migrations.RunPython(vytvor_pohadkanode, migrations.RunPython.noop),
]