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

r1835:aa9b2361 default
r1839:4c8bff54 default
Show More
0056_auto_20170123_1620.py
24 lines | 555 B | text/x-python | PythonLexer
/ boards / migrations / 0056_auto_20170123_1620.py
neko259
Do not index post's uid field as mysql does not support it
r1835 # -*- coding: utf-8 -*-
# Generated by Django 1.10.5 on 2017-01-23 14:20
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('boards', '0055_auto_20161229_1132'),
]
operations = [
migrations.AlterModelOptions(
name='attachment',
options={'ordering': ('id',)},
),
migrations.AlterField(
model_name='post',
name='uid',
field=models.TextField(),
),
]