mirror of https://github.com/interlegis/sigi.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.
31 lines
846 B
31 lines
846 B
from __future__ import unicode_literals
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("casas", "0002_auto_20150710_1247"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="casalegislativa",
|
|
name="horario_funcionamento",
|
|
field=models.CharField(
|
|
max_length=100,
|
|
verbose_name="Hor\xe1rio de funcionamento da Casa Legislativa",
|
|
blank=True,
|
|
),
|
|
preserve_default=True,
|
|
),
|
|
migrations.AddField(
|
|
model_name="funcionario",
|
|
name="data_nascimento",
|
|
field=models.DateField(
|
|
null=True, verbose_name="Data de nascimento", blank=True
|
|
),
|
|
preserve_default=True,
|
|
),
|
|
]
|
|
|