##// END OF EJS Templates
If thread is specified in the post template, do not load it again
If thread is specified in the post template, do not load it again

File last commit:

r1667:9955a8b6 default
r1670:c9facaf1 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),
),
]