mirror of https://github.com/interlegis/sapl.git
26 lines
1.3 KiB
26 lines
1.3 KiB
9 years ago
|
# -*- coding: utf-8 -*-
|
||
|
# Generated by Django 1.9 on 2016-03-09 16:23
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('base', '0009_auto_20160307_0905'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='casalegislativa',
|
||
|
name='informacao_geral',
|
||
|
field=models.TextField(blank=True, max_length=100, verbose_name='Informação Geral'),
|
||
|
),
|
||
|
migrations.AlterField(
|
||
|
model_name='casalegislativa',
|
||
|
name='uf',
|
||
|
field=models.CharField(choices=[('AC', 'Acre'), ('AL', 'Alagoas'), ('AP', 'Amapá'), ('AM', 'Amazonas'), ('BA', 'Bahia'), ('CE', 'Ceará'), ('DF', 'Distrito Federal'), ('ES', 'Espírito Santo'), ('GO', 'Goiás'), ('MA', 'Maranhão'), ('MT', 'Mato Grosso'), ('MS', 'Mato Grosso do Sul'), ('MG', 'Minas Gerais'), ('PR', 'Paraná'), ('PB', 'Paraíba'), ('PA', 'Pará'), ('PE', 'Pernambuco'), ('PI', 'Piauí'), ('RJ', 'Rio de Janeiro'), ('RN', 'Rio Grande do Norte'), ('RS', 'Rio Grande do Sul'), ('RO', 'Rondônia'), ('RR', 'Roraima'), ('SC', 'Santa Catarina'), ('SE', 'Sergipe'), ('SP', 'São Paulo'), ('TO', 'Tocantins'), ('EX', 'Exterior')], max_length=100, verbose_name='UF'),
|
||
|
),
|
||
|
]
|