mirror of https://github.com/interlegis/sapl.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
709 B
25 lines
709 B
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('parlamentares', '0007_auto_20151123_1258'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='parlamentar',
|
|
name='cod_casa',
|
|
field=models.PositiveIntegerField(blank=True, null=True, verbose_name='Cód. Casa'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='parlamentar',
|
|
name='nome_parlamentar',
|
|
field=models.CharField(default=1, verbose_name='Nome Parlamentar', max_length=50),
|
|
preserve_default=False,
|
|
),
|
|
]
|
|
|