# -*- coding: utf-8 -*- # Generated by Django 1.11.8 on 2018-08-22 19:08 from __future__ import unicode_literals from django.db import migrations import sortedm2m.fields class Migration(migrations.Migration): dependencies = [ ('content', '0011_auto_20180822_1832'), ] operations = [ migrations.AddField( model_name='content', name='related_content', field=sortedm2m.fields.SortedManyToManyField(help_text=None, to='content.Content'), ), ]