##// END OF EJS Templates
Put thread id parameter into POST body instead of GET param when getting a...
Put thread id parameter into POST body instead of GET param when getting a thread diff

File last commit:

r1180:e46298a6 default
r1191:0993e95c default
Show More
0019_auto_20150519_1323.py
19 lines | 469 B | text/x-python | PythonLexer
/ boards / migrations / 0019_auto_20150519_1323.py
neko259
Added tree mode for the thread
r1180 # -*- 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),
),
]