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

r1700:a1bf6771 default
r1839:4c8bff54 default
Show More
0052_auto_20161120_1344.py
20 lines | 458 B | text/x-python | PythonLexer
/ boards / migrations / 0052_auto_20161120_1344.py
neko259
Allow empty URL for an image
r1700 # -*- coding: utf-8 -*-
# Generated by Django 1.9.5 on 2016-11-20 11:44
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('boards', '0051_auto_20161013_1037'),
]
operations = [
migrations.AlterField(
model_name='attachment',
name='url',
field=models.TextField(blank=True, null=True),
),
]