Files
mayan-edms/mayan/apps/document_indexing/migrations/0008_auto_20150729_1515.py
Roberto Rosario 68f3c6eee7 PEP8 cleanups.
2015-08-19 14:50:44 -04:00

24 lines
553 B
Python

# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('document_indexing', '0007_auto_20150729_0152'),
]
operations = [
migrations.AlterField(
model_name='indexinstancenode',
name='value',
field=models.CharField(
db_index=True, max_length=128, verbose_name='Value',
blank=True
),
preserve_default=True,
),
]