Small file fix

This commit is contained in:
Skia
2016-08-31 02:05:04 +02:00
parent cb90ab8e57
commit fcfbfb3a0b
3 changed files with 21 additions and 3 deletions

View File

@ -0,0 +1,19 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('core', '0001_initial'),
]
operations = [
migrations.AlterField(
model_name='sithfile',
name='name',
field=models.CharField(verbose_name='file name', max_length=256),
),
]