Fix migrace řešitele na Osobu
This commit is contained in:
parent
b4cc6c7389
commit
7ae36a11a7
1 changed files with 2 additions and 2 deletions
|
@ -7,7 +7,7 @@ from django.db import migrations
|
|||
def resitel_to_osoba(apps,schema_editor):
|
||||
Resitel = apps.get_model('seminar','Resitel')
|
||||
Osoba = apps.get_model('seminar','Osoba')
|
||||
for r in Resitel.object.all():
|
||||
for r in Resitel.objects.all():
|
||||
o = Osoba()
|
||||
o.datum_narozeni = r.datum_narozeni
|
||||
o.datum_registrace = r.datum_prihlaseni
|
||||
|
@ -35,5 +35,5 @@ class Migration(migrations.Migration):
|
|||
]
|
||||
|
||||
operations = [
|
||||
|
||||
migrations.RunPython(resitel_to_osoba),
|
||||
]
|
||||
|
|
Loading…
Reference in a new issue