##// END OF EJS Templates
Added CSRF protection to settings. Fixed favorite tags switch from different pages
Added CSRF protection to settings. Fixed favorite tags switch from different pages

File last commit:

r1500:9178427e default
r1693:807f3415 default
Show More
0041_auto_20160124_2341.py
24 lines | 570 B | text/x-python | PythonLexer
/ boards / migrations / 0041_auto_20160124_2341.py
neko259
Added image aliases to upload the same images (like "fake" or "gtfo")
r1500 # -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('boards', '0040_thread_monochrome'),
]
operations = [
migrations.AddField(
model_name='attachment',
name='original_filename',
field=models.TextField(null=True),
),
migrations.AddField(
model_name='postimage',
name='original_filename',
field=models.TextField(null=True),
),
]