##// END OF EJS Templates
Limit only first posting by this session. Assume messages created by spam bots...
Limit only first posting by this session. Assume messages created by spam bots can be removed afterwards

File last commit:

r1250:4c8a70f6 default
r1494:89a50a1d default
Show More
0020_auto_20150731_1738.py
19 lines | 479 B | text/x-python | PythonLexer
/ boards / migrations / 0020_auto_20150731_1738.py
neko259
Don't include archived posts into the random image list
r1250 # -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('boards', '0019_auto_20150519_1323'),
]
operations = [
migrations.AlterField(
model_name='post',
name='images',
field=models.ManyToManyField(to='boards.PostImage', blank=True, null=True, db_index=True, related_name='post_images'),
),
]