# Copyright The IETF Trust 2019, All Rights Reserved # -*- coding: utf-8 -*- # Generated by Django 1.11.20 on 2019-05-22 08:15 from __future__ import absolute_import, print_function, unicode_literals from django.db import migrations class Migration(migrations.Migration): dependencies = [ ('community', '0004_set_document_m2m_keys'), ] # The implementation of AlterField in Django 1.11 applies # 'ALTER TABLE MODIFY ...;' in order to fix foregn keys # to the altered field, but as it seems does _not_ fix up m2m # intermediary tables in an equivalent manner, so here we remove and # then recreate the m2m tables so they will have the appropriate field # types. operations = [ # Remove fields migrations.RemoveField( model_name='communitylist', name='added_docs', ), migrations.RemoveField( model_name='searchrule', name='name_contains_index', ), ]