mirror of https://github.com/interlegis/sapl.git
Victor Fabre
7 years ago
committed by
Edward
4 changed files with 73 additions and 38 deletions
@ -0,0 +1,25 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Generated by Django 1.9.13 on 2018-04-16 17:24 |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations, models |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('sessao', '0019_auto_20180404_1437'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AddField( |
|||
model_name='expedientemateria', |
|||
name='registro_aberto', |
|||
field=models.NullBooleanField(choices=[(True, 'Sim'), (False, 'Não')], verbose_name='Registro de Votação Iniciado?'), |
|||
), |
|||
migrations.AddField( |
|||
model_name='ordemdia', |
|||
name='registro_aberto', |
|||
field=models.NullBooleanField(choices=[(True, 'Sim'), (False, 'Não')], verbose_name='Registro de Votação Iniciado?'), |
|||
), |
|||
] |
Loading…
Reference in new issue