Files
mayan-edms/mayan/apps/document_indexing/migrations/0011_auto_20170524_0456.py
Roberto Rosario 88151df2bc Rewrite the document indexer to allow single index rebuilds,
less locks and improve performance.

Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
2017-05-28 15:22:13 -04:00

26 lines
748 B
Python

# -*- coding: utf-8 -*-
# Generated by Django 1.10.6 on 2017-05-24 04:56
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('document_indexing', '0010_documentindexinstancenode_indexinstance'),
]
operations = [
migrations.AlterField(
model_name='indextemplatenode',
name='expression',
field=models.TextField(
help_text="Enter a template to render. Use Django's default "
"templating language (https://docs.djangoproject.com/en/1.7/"
"ref/templates/builtins/)",
verbose_name='Indexing expression'
),
),
]