From c7dec2ee0979309c249623fada459b2626583ec4 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 12 Dec 2018 21:05:50 -0400 Subject: [PATCH] Documents: Add missing migration for model rename Add the migration for the DocumentPageResult model rename in commit 2d4a710999da93be497cd830c86d9c808be30892. Signed-off-by: Roberto Rosario --- .../migrations/0049_auto_20181211_0011.py | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 mayan/apps/documents/migrations/0049_auto_20181211_0011.py diff --git a/mayan/apps/documents/migrations/0049_auto_20181211_0011.py b/mayan/apps/documents/migrations/0049_auto_20181211_0011.py new file mode 100644 index 0000000000..7398d0c1f5 --- /dev/null +++ b/mayan/apps/documents/migrations/0049_auto_20181211_0011.py @@ -0,0 +1,31 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.16 on 2018-12-11 00:11 +from __future__ import unicode_literals + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('documents', '0048_auto_20181204_1835'), + ] + + operations = [ + migrations.DeleteModel( + name='DocumentPageResult', + ), + migrations.CreateModel( + name='DocumentPageSearchResult', + fields=[ + ], + options={ + 'ordering': ('document_version__document', 'page_number'), + 'verbose_name': 'Document page', + 'proxy': True, + 'verbose_name_plural': 'Document pages', + 'indexes': [], + }, + bases=('documents.documentpage',), + ), + ]