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.
21 lines
555 B
21 lines
555 B
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
import protocoloadm.models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('protocoloadm', '0002_auto_20150729_1717'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='documentoacessorioadministrativo',
|
|
name='texto_integral',
|
|
field=models.FileField(verbose_name='Texto Integral', blank=True, null=True, upload_to=protocoloadm.models.texto_upload_path),
|
|
),
|
|
]
|
|
|