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

r1704:8410d497 default
r1839:4c8bff54 default
Show More
0053_auto_20161127_1541.py
25 lines | 657 B | text/x-python | PythonLexer
/ boards / migrations / 0053_auto_20161127_1541.py
# -*- coding: utf-8 -*-
# Generated by Django 1.9.5 on 2016-11-27 13:41
from __future__ import unicode_literals
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('boards', '0052_auto_20161120_1344'),
]
operations = [
migrations.RemoveField(
model_name='post',
name='threads',
),
migrations.AlterField(
model_name='post',
name='thread',
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='replies', to='boards.Thread'),
),
]