##// END OF EJS Templates
Do not rely on the md5 hash of the file, compare the file contents when searching for duplicate
Do not rely on the md5 hash of the file, compare the file contents when searching for duplicate

File last commit:

r1704:8410d497 default
r1824:d33ed39f 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'),
),
]