Files
zulip/zerver/migrations/0042_attachment_file_name_length.py
Anders Kaseorg 6e4c3e41dc python: Normalize quotes with Black.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
2021-02-12 13:11:19 -08:00

17 lines
360 B
Python

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),
),
]