##// 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:

r1751:3a810c6e default
r1839:4c8bff54 default
Show More
0055_auto_20161229_1132.py
25 lines | 630 B | text/x-python | PythonLexer
/ boards / migrations / 0055_auto_20161229_1132.py
# -*- coding: utf-8 -*-
# Generated by Django 1.10.4 on 2016-12-29 09:32
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('boards', '0054_auto_20161228_2244'),
]
operations = [
migrations.AlterField(
model_name='post',
name='text',
field=models.TextField(blank=True, default=''),
),
migrations.AlterField(
model_name='post',
name='title',
field=models.CharField(blank=True, default='', max_length=200),
),
]