Add missing migrations.

This commit is contained in:
Roberto Rosario
2015-08-14 23:53:49 -04:00
parent 8cc685ede7
commit b382227ec0
3 changed files with 60 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('document_indexing', '0008_auto_20150729_1515'),
]
operations = [
migrations.AlterField(
model_name='indextemplatenode',
name='expression',
field=models.CharField(help_text="Enter a template to render. Use Django's default templating language (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)", max_length=128, verbose_name='Indexing expression'),
preserve_default=True,
),
]