mirror of https://github.com/interlegis/sapl.git
Browse Source
* Inicia a adição de assuntos a materias * Finaliza pesquisa por assunto * Bug fix * Adiciona verbose namespull/997/head
eduardocalil
8 years ago
committed by
Edward
9 changed files with 133 additions and 10 deletions
@ -0,0 +1,25 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
# Generated by Django 1.9.7 on 2017-04-03 15:05 |
||||
|
from __future__ import unicode_literals |
||||
|
|
||||
|
from django.db import migrations, models |
||||
|
|
||||
|
|
||||
|
class Migration(migrations.Migration): |
||||
|
|
||||
|
dependencies = [ |
||||
|
('materia', '0002_auto_20170330_1513'), |
||||
|
] |
||||
|
|
||||
|
operations = [ |
||||
|
migrations.AlterField( |
||||
|
model_name='assuntomateria', |
||||
|
name='assunto', |
||||
|
field=models.CharField(max_length=50, verbose_name='Assunto'), |
||||
|
), |
||||
|
migrations.AlterField( |
||||
|
model_name='assuntomateria', |
||||
|
name='dispositivo', |
||||
|
field=models.CharField(blank=True, max_length=200, null=True, verbose_name='Descrição do Dispositivo Legal'), |
||||
|
), |
||||
|
] |
@ -0,0 +1,21 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
# Generated by Django 1.9.7 on 2017-04-03 15:05 |
||||
|
from __future__ import unicode_literals |
||||
|
|
||||
|
from django.db import migrations, models |
||||
|
import sapl.utils |
||||
|
|
||||
|
|
||||
|
class Migration(migrations.Migration): |
||||
|
|
||||
|
dependencies = [ |
||||
|
('norma', '0001_initial'), |
||||
|
] |
||||
|
|
||||
|
operations = [ |
||||
|
migrations.AlterField( |
||||
|
model_name='normajuridica', |
||||
|
name='texto_integral', |
||||
|
field=models.FileField(blank=True, null=True, upload_to=sapl.utils.texto_upload_path, validators=[sapl.utils.restringe_tipos_de_arquivo_txt], verbose_name='Texto Integral'), |
||||
|
), |
||||
|
] |
Loading…
Reference in new issue