Files
zulip/zerver/migrations/0042_attachment_file_name_length.py
Tim Abbott e6f4cb2635 attachment: Remove DB limit on length of filenames.
This fixes an issue where we threw on error on files with long names.
2016-11-15 21:12:05 -08:00

20 lines
425 B
Python

# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('zerver', '0041_create_attachments_for_old_messages'),
]
operations = [
migrations.AlterField(
model_name='attachment',
name='file_name',
field=models.TextField(db_index=True),
),
]