2016-11-16 04:34:14 +01:00
|
|
|
from django.db import migrations, models
|
|
|
|
|
2020-01-14 21:59:46 +01:00
|
|
|
|
2016-11-16 04:34:14 +01:00
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
dependencies = [
|
2021-02-12 08:20:45 +01:00
|
|
|
("zerver", "0041_create_attachments_for_old_messages"),
|
2016-11-16 04:34:14 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AlterField(
|
2021-02-12 08:20:45 +01:00
|
|
|
model_name="attachment",
|
|
|
|
name="file_name",
|
2016-11-16 04:34:14 +01:00
|
|
|
field=models.TextField(db_index=True),
|
|
|
|
),
|
|
|
|
]
|