mirror of https://github.com/interlegis/sapl.git
Browse Source
* Fix #2492 Co-authored-by: Cesar Carvalho <cesaraugc@gmail.com> * Melhora mensagens de erro Co-authored-by: Cesar Carvalho <cesaraugc@gmail.com> * Adiciona parâmetro em AppConfigpull/2527/head
Victor Fabre
6 years ago
committed by
Edward
9 changed files with 110 additions and 10 deletions
@ -0,0 +1,20 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Generated by Django 1.11.20 on 2019-02-19 11:14 |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations, models |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('base', '0029_remove_appconfig_relatorios_atos'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AddField( |
|||
model_name='appconfig', |
|||
name='escolher_numero_materia_proposicao', |
|||
field=models.BooleanField(choices=[(True, 'Sim'), (False, 'Não')], default=False, verbose_name='Indicar número da matéria a ser gerada na proposição?'), |
|||
), |
|||
] |
@ -0,0 +1,16 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Generated by Django 1.11.20 on 2019-02-19 12:41 |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('base', '0031_auto_20190218_1109'), |
|||
('base', '0030_appconfig_escolher_numero_materia_proposicao'), |
|||
] |
|||
|
|||
operations = [ |
|||
] |
@ -0,0 +1,20 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Generated by Django 1.11.20 on 2019-02-15 11:10 |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations, models |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('materia', '0040_auto_20190211_1602'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AddField( |
|||
model_name='proposicao', |
|||
name='numero_materia_futuro', |
|||
field=models.PositiveIntegerField(blank=True, null=True, verbose_name='Número Matéria'), |
|||
), |
|||
] |
Loading…
Reference in new issue