##// END OF EJS Templates
Allow pasting files from clipboard. Alpha release, removing or previewing images in the form not implemented yet
Allow pasting files from clipboard. Alpha release, removing or previewing images in the form not implemented yet

File last commit:

r1873:47bc67c1 default
r1985:7b9ffc10 default
Show More
0061_auto_20170227_1739.py
25 lines | 643 B | text/x-python | PythonLexer
/ boards / migrations / 0061_auto_20170227_1739.py
# -*- coding: utf-8 -*-
# Generated by Django 1.10.5 on 2017-02-27 15:39
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('boards', '0060_auto_20170227_1738'),
]
operations = [
migrations.AlterField(
model_name='tag',
name='name',
field=models.CharField(db_index=True, max_length=100, unique=True),
),
migrations.AlterField(
model_name='tagalias',
name='name',
field=models.CharField(db_index=True, max_length=100),
),
]