mirror of https://github.com/interlegis/sapl.git
Browse Source
* fix #2107 * HOT-FIX: corrige erros no form * HOT-FIX: adequa teste * HOT-FIX: tira possibilidade de charfield ser nullpull/2124/head
Victor Fabre
7 years ago
committed by
Edward
6 changed files with 84 additions and 29 deletions
@ -0,0 +1,20 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Generated by Django 1.9.13 on 2018-08-06 15:36 |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations, models |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('audiencia', '0004_auto_20180305_1006'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AlterField( |
|||
model_name='audienciapublica', |
|||
name='hora_fim', |
|||
field=models.CharField(blank=True, max_length=5, null=True, verbose_name='Horário Fim(hh:mm)'), |
|||
), |
|||
] |
@ -0,0 +1,20 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Generated by Django 1.9.13 on 2018-08-08 11:56 |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations, models |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('audiencia', '0005_auto_20180806_1236'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AlterField( |
|||
model_name='audienciapublica', |
|||
name='hora_fim', |
|||
field=models.CharField(blank=True, max_length=5, verbose_name='Horário Fim(hh:mm)'), |
|||
), |
|||
] |
Loading…
Reference in new issue