Browse Source
Zobrazeni daneho seznamu pretezuje server, jinak vse ok.remotes/origin/posli-mail-autorovi-korektury
Tomas "Jethro" Pokorny
8 years ago
2 changed files with 26 additions and 2 deletions
@ -0,0 +1,24 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
from __future__ import unicode_literals |
||||
|
|
||||
|
from django.db import migrations, models |
||||
|
|
||||
|
|
||||
|
class Migration(migrations.Migration): |
||||
|
|
||||
|
dependencies = [ |
||||
|
('prednasky', '0009_auto_20160929_0354'), |
||||
|
] |
||||
|
|
||||
|
operations = [ |
||||
|
migrations.AlterField( |
||||
|
model_name='prednaska', |
||||
|
name='anotace', |
||||
|
field=models.TextField(help_text='Ve\u0159ejn\xe1 anotace v hlasov\xe1n\xed', null=True, verbose_name=b'Anotace', blank=True), |
||||
|
), |
||||
|
migrations.AlterField( |
||||
|
model_name='prednaska', |
||||
|
name='popis', |
||||
|
field=models.TextField(help_text='Neve\u0159ejn\xfd popis pro ostatn\xed orgy', null=True, verbose_name='Popis pro orgy', blank=True), |
||||
|
), |
||||
|
] |
Loading…
Reference in new issue