# -*- coding: utf-8 -*- from __future__ import unicode_literals from django.db import models, migrations class Migration(migrations.Migration): dependencies = [ ('boards', '0018_banner'), ] operations = [ migrations.AlterField( model_name='post', name='referenced_posts', field=models.ManyToManyField(db_index=True, to='boards.Post', null=True, related_name='refposts', blank=True), ), ]