Browse Source
Migrace autora z CharField na odkaz na Organizator Odstraneni stareho CharFielduremotes/origin/korekturovatko_emaily
Bc. Petr Pecha
8 years ago
2 changed files with 22 additions and 2 deletions
@ -0,0 +1,22 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
from __future__ import unicode_literals |
||||
|
|
||||
|
from django.db import migrations, models |
||||
|
|
||||
|
|
||||
|
class Migration(migrations.Migration): |
||||
|
|
||||
|
dependencies = [ |
||||
|
('korektury', '0011_prevod_autora_z_charField_na_Organizator'), |
||||
|
] |
||||
|
|
||||
|
operations = [ |
||||
|
migrations.RemoveField( |
||||
|
model_name='komentar', |
||||
|
name='autor', |
||||
|
), |
||||
|
migrations.RemoveField( |
||||
|
model_name='oprava', |
||||
|
name='autor', |
||||
|
), |
||||
|
] |
Loading…
Reference in new issue