mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
Introduce a feature to schedule realm data deletion time during realm deactivation. This includes a server-level setting to configure the minimum and maximum allowed deletion days. Co-authored-by: Ujjawal Modi <umodi2003@gmail.com> Co-authored-by: Lauryn Menard <lauryn@zulip.com> Fixes #24677.
18 lines
441 B
Python
18 lines
441 B
Python
# Generated by Django 5.0.9 on 2024-10-12 07:03
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("zerver", "0642_realm_moderation_request_channel"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="realm",
|
|
name="scheduled_deletion_date",
|
|
field=models.DateTimeField(db_index=True, default=None, null=True),
|
|
),
|
|
]
|