mirror of https://github.com/interlegis/sapl.git
Browse Source
* Corrige inconsistencias entre Tramitacao DocAdm e MatLegislativa * corrige testepull/2811/head
Cesar Augusto de Carvalho
6 years ago
committed by
Cesar Carvalho
8 changed files with 113 additions and 8 deletions
@ -0,0 +1,25 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Generated by Django 1.11.20 on 2019-04-29 11:28 |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations, models |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('protocoloadm', '0018_auto_20190314_1532'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AddField( |
|||
model_name='tramitacaoadministrativo', |
|||
name='urgente', |
|||
field=models.BooleanField(choices=[(True, 'Sim'), (False, 'Não')], default=False, verbose_name='Urgente ?'), |
|||
), |
|||
migrations.AlterField( |
|||
model_name='tramitacaoadministrativo', |
|||
name='texto', |
|||
field=models.TextField(verbose_name='Texto da Ação'), |
|||
), |
|||
] |
@ -0,0 +1,21 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Generated by Django 1.11.20 on 2019-04-29 12:15 |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations, models |
|||
import django.utils.timezone |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('protocoloadm', '0019_auto_20190429_0828'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AddField( |
|||
model_name='tramitacaoadministrativo', |
|||
name='timestamp', |
|||
field=models.DateTimeField(default=django.utils.timezone.now), |
|||
), |
|||
] |
Loading…
Reference in new issue