Skip to content

Commit

Permalink
Create 0007_filer_file_size.py
Browse files Browse the repository at this point in the history
BEN-2875: increase file chars to 1024
  • Loading branch information
andreilupuleasa committed Nov 1, 2023
1 parent 8b760de commit 47c4936
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions filer/migrations/0007_filer_file_size.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
from django.db import migrations, models


class Migration(migrations.Migration):
dependencies = [
('filer', '0006_default_caption_text_size'),
]

operations = [
migrations.AlterField(
model_name='File',
name='file',
field=models.MultiStorageFileField(max_length=1024),
),
]

0 comments on commit 47c4936

Please sign in to comment.