##// END OF EJS Templates
If found several images with the same hash, use the equal one as duplicate not the first one with the hash
If found several images with the same hash, use the equal one as duplicate not the first one with the hash

File last commit:

r1273:2c3f55c9 default
r1856:969bd865 default
Show More
0022_auto_20150812_1819.py
19 lines | 432 B | text/x-python | PythonLexer
/ boards / migrations / 0022_auto_20150812_1819.py
neko259
Added support for different attachment types
r1273 # -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('boards', '0021_tag_description'),
]
operations = [
migrations.AlterField(
model_name='thread',
name='tags',
field=models.ManyToManyField(related_name='thread_tags', to='boards.Tag'),
),
]