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.
18 lines
551 B
18 lines
551 B
# Generated by Django 2.2 on 2020-06-09 18:01
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('compilacao', '0014_auto_20200521_1534'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='textoarticulado',
|
|
name='participacao_social',
|
|
field=models.BooleanField(blank=True, choices=[(None, 'Padrão definido no Tipo'), (True, 'Sim'), (False, 'Não')], default=False, null=True, verbose_name='Participação Social'),
|
|
),
|
|
]
|
|
|