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.
23 lines
478 B
23 lines
478 B
5 years ago
|
# Generated by Django 2.2.9 on 2020-01-15 21:28
|
||
|
|
||
|
from django.db import migrations
|
||
|
|
||
|
def copy_mails(apps, schema_editor):
|
||
|
Osoba = apps.get_model('seminar', 'Osoba')
|
||
|
|
||
|
for o in Osoba.objects.all():
|
||
|
if o.user is not None:
|
||
|
u = o.user
|
||
|
u.email = o.email
|
||
|
u.save()
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('seminar', '0072_auto_20191204_2257'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.RunPython(copy_mails, migrations.RunPython.noop)
|
||
|
]
|