##// END OF EJS Templates
Added file and url multi value field that will simplify adding many files to one post in future
Added file and url multi value field that will simplify adding many files to one post in future

File last commit:

r1704:8410d497 default
r1752:4ca1286e 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'),
),
]