##// END OF EJS Templates
Show localized tags under the proper letter section in all tags list. Cache localized tag name, not the whole view
Show localized tags under the proper letter section in all tags list. Cache localized tag name, not the whole view

File last commit:

r1835:aa9b2361 default
r1892:0808e889 default
Show More
0056_auto_20170123_1620.py
24 lines | 555 B | text/x-python | PythonLexer
/ boards / migrations / 0056_auto_20170123_1620.py
neko259
Do not index post's uid field as mysql does not support it
r1835 # -*- coding: utf-8 -*-
# Generated by Django 1.10.5 on 2017-01-23 14:20
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('boards', '0055_auto_20161229_1132'),
]
operations = [
migrations.AlterModelOptions(
name='attachment',
options={'ordering': ('id',)},
),
migrations.AlterField(
model_name='post',
name='uid',
field=models.TextField(),
),
]