0070_auto_20171225_1149.py
23 lines
| 662 B
| text/x-python
|
PythonLexer
neko259
|
r2067 | # Generated by Django 2.0 on 2017-12-25 09:49 | ||
from django.db import migrations, models | ||||
class Migration(migrations.Migration): | ||||
dependencies = [ | ||||
('boards', '0069_usersettings'), | ||||
] | ||||
operations = [ | ||||
migrations.AlterField( | ||||
model_name='post', | ||||
name='attachments', | ||||
field=models.ManyToManyField(blank=True, related_name='attachment_posts', to='boards.Attachment'), | ||||
), | ||||
migrations.AlterField( | ||||
model_name='post', | ||||
name='referenced_posts', | ||||
field=models.ManyToManyField(blank=True, db_index=True, related_name='refposts', to='boards.Post'), | ||||
), | ||||
] | ||||