21 lines
544 B
Python
21 lines
544 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.20 on 2019-04-29 19:22
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('document_indexing', '0014_auto_20180823_2353'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='index',
|
|
name='document_types',
|
|
field=models.ManyToManyField(related_name='indexes', to='documents.DocumentType', verbose_name='Document types'),
|
|
),
|
|
]
|