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

r1750:867beeae default
r1839:4c8bff54 default
Show More
0054_auto_20161228_2244.py
25 lines | 625 B | text/x-python | PythonLexer
/ boards / migrations / 0054_auto_20161228_2244.py
# -*- coding: utf-8 -*-
# Generated by Django 1.10.4 on 2016-12-28 20:44
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('boards', '0053_auto_20161127_1541'),
]
operations = [
migrations.AlterField(
model_name='attachment',
name='alias',
field=models.TextField(null=True, unique=True),
),
migrations.AlterField(
model_name='attachment',
name='url',
field=models.TextField(blank=True, default=''),
),
]