##// END OF EJS Templates
Fixed building reflink maps that were broken when post link generator was...
Fixed building reflink maps that were broken when post link generator was moved to a pre-save stage, and there was no link yet when the reflink builder tried to get it

File last commit:

r922:d17fdea9 default
r1192:cfe10bce default
Show More
0004_tag_required.py
20 lines | 436 B | text/x-python | PythonLexer
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('boards', '0003_remove_tag_threads'),
]
operations = [
migrations.AddField(
model_name='tag',
name='required',
field=models.BooleanField(default=False),
preserve_default=True,
),
]