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

r1078:d6ba9a1d default
r1149:ecab0b83 default
Show More
0013_auto_20150408_1210.py
30 lines | 758 B | text/x-python | PythonLexer
/ boards / migrations / 0013_auto_20150408_1210.py
neko259
Removed poster user agent field
r1078 # -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('boards', '0012_thread_max_posts'),
]
operations = [
migrations.RemoveField(
model_name='post',
name='poster_user_agent',
),
migrations.AlterField(
model_name='post',
name='title',
field=models.CharField(null=True, blank=True, max_length=200),
preserve_default=True,
),
migrations.AlterField(
model_name='thread',
name='max_posts',
field=models.IntegerField(default=12),
preserve_default=True,
),
]