##// END OF EJS Templates
Show all reply count and today reply count for threads on landing
Show all reply count and today reply count for threads on landing

File last commit:

r1874:aaf6b563 default
r2007:db58920c default
Show More
0062_auto_20170301_1053.py
23 lines | 616 B | text/x-python | PythonLexer
/ boards / migrations / 0062_auto_20170301_1053.py
# -*- coding: utf-8 -*-
# Generated by Django 1.10.5 on 2017-03-01 08:53
from __future__ import unicode_literals
from django.db import migrations
class Migration(migrations.Migration):
def tag_name_to_alias(apps, schema_editor):
Tag = apps.get_model('boards', 'Tag')
TagAlias = apps.get_model('boards', 'TagAlias')
for tag in Tag.objects.all():
TagAlias.objects.get_or_create(name=tag.name, locale='default', parent=tag)
dependencies = [
('boards', '0061_auto_20170227_1739'),
]
operations = [
migrations.RunPython(tag_name_to_alias),
]