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

r1750:867beeae default
r1892:0808e889 default
Show More
0054_auto_20161228_2244.py
25 lines | 625 B | text/x-python | PythonLexer
/ boards / migrations / 0054_auto_20161228_2244.py
neko259
Allow deleting aliases
r1750 # -*- 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=''),
),
]