##// END OF EJS Templates
Show all reply count and today reply count for threads on landing
Show all reply count and today reply count for threads on landing

File last commit:

r1667:9955a8b6 default
r2007:db58920c default
Show More
0051_auto_20161013_1037.py
25 lines | 725 B | text/x-python | PythonLexer
/ boards / migrations / 0051_auto_20161013_1037.py
# -*- coding: utf-8 -*-
# Generated by Django 1.9.5 on 2016-10-13 07:37
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('boards', '0050_auto_20161008_1745'),
]
operations = [
migrations.AlterField(
model_name='post',
name='pub_time',
field=models.DateTimeField(db_index=True),
),
migrations.AlterField(
model_name='thread',
name='status',
field=models.CharField(choices=[('active', 'active'), ('bumplimit', 'bumplimit'), ('archived', 'archived')], db_index=True, default='active', max_length=50),
),
]