##// END OF EJS Templates
Added ability to show multiple banners. Added "view on site" link for the post...
Added ability to show multiple banners. Added "view on site" link for the post and thread admin

File last commit:

r1121:423cb733 default
r1149:ecab0b83 default
Show More
0016_auto_20150421_1803.py
20 lines | 431 B | text/x-python | PythonLexer
/ boards / migrations / 0016_auto_20150421_1803.py
neko259
Added lost migration
r1121 # -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('boards', '0015_auto_20150420_1331'),
]
operations = [
migrations.AlterField(
model_name='post',
name='uid',
field=models.TextField(db_index=True),
preserve_default=True,
),
]