mirror of https://github.com/interlegis/sapl.git
Vinícius Cantuária
6 years ago
committed by
Edward
2 changed files with 47 additions and 17 deletions
@ -0,0 +1,34 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Generated by Django 1.11.20 on 2019-02-19 18:11 |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations, models |
|||
import django.utils.timezone |
|||
import sapl.utils |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('audiencia', '0009_remove_anexoaudienciapublica_indexacao'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AlterField( |
|||
model_name='anexoaudienciapublica', |
|||
name='arquivo', |
|||
field=models.FileField(default='Assunto não existente.', upload_to=sapl.utils.texto_upload_path, verbose_name='Arquivo'), |
|||
preserve_default=False, |
|||
), |
|||
migrations.AlterField( |
|||
model_name='anexoaudienciapublica', |
|||
name='assunto', |
|||
field=models.TextField(verbose_name='Assunto'), |
|||
), |
|||
migrations.AlterField( |
|||
model_name='anexoaudienciapublica', |
|||
name='data', |
|||
field=models.DateField(auto_now=True, default=django.utils.timezone.now), |
|||
preserve_default=False, |
|||
), |
|||
] |
Loading…
Reference in new issue