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

r1368:3a697667 default
r1839:4c8bff54 default
Show More
0034_auto_20151014_2253.py
26 lines | 731 B | text/x-python | PythonLexer
/ boards / migrations / 0034_auto_20151014_2253.py
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
import boards.thumbs
import boards.utils
class Migration(migrations.Migration):
dependencies = [
('boards', '0033_auto_20151014_2224'),
]
operations = [
migrations.AlterField(
model_name='attachment',
name='file',
field=models.FileField(upload_to=boards.utils.get_upload_filename),
),
migrations.AlterField(
model_name='postimage',
name='image',
field=boards.thumbs.ImageWithThumbsField(blank=True, width_field='width', height_field='height', upload_to=boards.utils.get_upload_filename),
),
]