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.
27 lines
1.0 KiB
27 lines
1.0 KiB
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.20 on 2019-10-01 14:15
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
import sapl.norma.models
|
|
import sapl.utils
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('norma', '0026_auto_20190712_1053'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='anexonormajuridica',
|
|
name='anexo_arquivo',
|
|
field=models.FileField(blank=True, max_length=200, null=True, storage=sapl.utils.OverwriteStorage(), upload_to=sapl.norma.models.norma_upload_path, validators=[sapl.utils.restringe_tipos_de_arquivo_txt], verbose_name='Arquivo Anexo'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='normajuridica',
|
|
name='texto_integral',
|
|
field=models.FileField(blank=True, max_length=200, null=True, storage=sapl.utils.OverwriteStorage(), upload_to=sapl.norma.models.norma_upload_path, validators=[sapl.utils.restringe_tipos_de_arquivo_txt], verbose_name='Texto Integral'),
|
|
),
|
|
]
|
|
|