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

r1750:867beeae default
r1824:d33ed39f default
Show More
0054_auto_20161228_2244.py
25 lines | 625 B | text/x-python | PythonLexer
/ boards / migrations / 0054_auto_20161228_2244.py
# -*- coding: utf-8 -*-
# Generated by Django 1.10.4 on 2016-12-28 20:44
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('boards', '0053_auto_20161127_1541'),
]
operations = [
migrations.AlterField(
model_name='attachment',
name='alias',
field=models.TextField(null=True, unique=True),
),
migrations.AlterField(
model_name='attachment',
name='url',
field=models.TextField(blank=True, default=''),
),
]