mirror of
https://github.com/pretix/pretix.git
synced 2026-05-08 15:44:02 +00:00
Increase maximum filename size of FileFields
This commit is contained in:
20
src/pretix/helpers/migrations/0002_auto_20180320_1219.py
Normal file
20
src/pretix/helpers/migrations/0002_auto_20180320_1219.py
Normal file
@@ -0,0 +1,20 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.11.11 on 2018-03-20 12:19
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('pretixhelpers', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='thumbnail',
|
||||
name='thumb',
|
||||
field=models.FileField(max_length=255, upload_to='pub/thumbs/'),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user