##// END OF EJS Templates
Use proper settings for max landing threads. Show thread last update time instead of number of posts
Use proper settings for max landing threads. Show thread last update time instead of number of posts

File last commit:

r1704:8410d497 default
r2001:6d66389f default
Show More
0053_auto_20161127_1541.py
25 lines | 657 B | text/x-python | PythonLexer
/ boards / migrations / 0053_auto_20161127_1541.py
# -*- coding: utf-8 -*-
# Generated by Django 1.9.5 on 2016-11-27 13:41
from __future__ import unicode_literals
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('boards', '0052_auto_20161120_1344'),
]
operations = [
migrations.RemoveField(
model_name='post',
name='threads',
),
migrations.AlterField(
model_name='post',
name='thread',
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='replies', to='boards.Thread'),
),
]