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

r1667:9955a8b6 default
r1824:d33ed39f default
Show More
0051_auto_20161013_1037.py
25 lines | 725 B | text/x-python | PythonLexer
/ boards / migrations / 0051_auto_20161013_1037.py
# -*- coding: utf-8 -*-
# Generated by Django 1.9.5 on 2016-10-13 07:37
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('boards', '0050_auto_20161008_1745'),
]
operations = [
migrations.AlterField(
model_name='post',
name='pub_time',
field=models.DateTimeField(db_index=True),
),
migrations.AlterField(
model_name='thread',
name='status',
field=models.CharField(choices=[('active', 'active'), ('bumplimit', 'bumplimit'), ('archived', 'archived')], db_index=True, default='active', max_length=50),
),
]