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

r1519:a2e6cea8 decentral
r1856:969bd865 default
Show More
0044_globalid_content.py
20 lines | 445 B | text/x-python | PythonLexer
/ boards / migrations / 0044_globalid_content.py
neko259
Added content field to global id to store cached model content. If a server uses diffrent serialization algorithm, it would still pass the same content string along saving its signature
r1519 # -*- coding: utf-8 -*-
# Generated by Django 1.9.5 on 2016-05-04 15:36
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('boards', '0043_merge'),
]
operations = [
migrations.AddField(
model_name='globalid',
name='content',
field=models.TextField(blank=True, null=True),
),
]