##// END OF EJS Templates
Do not try to add an attachment ref for external attachment if there is an internal and external attachment in the same post
Do not try to add an attachment ref for external attachment if there is an internal and external attachment in the same post

File last commit:

r1667:9955a8b6 default
r1839:4c8bff54 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),
),
]