increased comic file name lenght to 100 chars

fixed finding the file extension.
This commit is contained in:
2015-06-26 18:33:10 +01:00
parent 15d00c3f94
commit fa4fdff0e6
4 changed files with 93 additions and 2 deletions

View File

@@ -0,0 +1,19 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('comic', '0006_auto_20150625_1411'),
]
operations = [
migrations.AlterField(
model_name='setting',
name='name',
field=models.CharField(unique=True, max_length=100),
),
]