Pavel "LEdoian" Turinsky
4 years ago
2 changed files with 20 additions and 1 deletions
@ -0,0 +1,19 @@ |
|||
from django.db import migrations |
|||
|
|||
def oprav_ulohy(apps, schema_editor): |
|||
Problem = apps.get_model('seminar', 'Pohadka') |
|||
|
|||
for p in Problem.objects.filter(typ="b'uloha'"): |
|||
p.typ = "uloha" |
|||
p.save() |
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('seminar', '0058_problem_to_uloha_tema_clanek'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.RunPython(oprav_ulohy, oprav_ulohy), |
|||
] |
|||
|
Loading…
Reference in new issue