Files
zulip/zerver/migrations/0661_archivetransaction_protect_from_deletion.py
Mateusz Mandera a352d35660 retention: Add flag to ArchiveTransaction to prevent automatic deletion.
This adds an index non-concurrently, but the table should be small
enough for this to be fine.
2025-02-04 11:31:13 -08:00

18 lines
442 B
Python

# Generated by Django 5.0.10 on 2025-01-28 06:10
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("zerver", "0660_add_imageattachment_content_type"),
]
operations = [
migrations.AddField(
model_name="archivetransaction",
name="protect_from_deletion",
field=models.BooleanField(db_index=True, default=False),
),
]