2017-05-10 08:02:21 +02:00
|
|
|
# Generated by Django 1.10.5 on 2017-05-10 05:59
|
|
|
|
from django.db import migrations
|
2023-03-04 01:40:40 +01:00
|
|
|
from django.db.backends.base.schema import BaseDatabaseSchemaEditor
|
2017-05-10 08:02:21 +02:00
|
|
|
from django.db.migrations.state import StateApps
|
|
|
|
|
2020-01-14 21:59:46 +01:00
|
|
|
|
2022-05-27 23:33:51 +02:00
|
|
|
def delete_old_scheduled_jobs(apps: StateApps, schema_editor: BaseDatabaseSchemaEditor) -> None:
|
2017-05-10 08:02:21 +02:00
|
|
|
"""Delete any old scheduled jobs, to handle changes in the format of
|
|
|
|
that table. Ideally, we'd translate the jobs, but it's not really
|
|
|
|
worth the development effort to save a few invitation reminders
|
|
|
|
and day2 followup emails.
|
|
|
|
"""
|
2021-02-12 08:20:45 +01:00
|
|
|
ScheduledJob = apps.get_model("zerver", "ScheduledJob")
|
2017-05-10 08:02:21 +02:00
|
|
|
ScheduledJob.objects.all().delete()
|
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2017-05-10 08:02:21 +02:00
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
2021-02-12 08:20:45 +01:00
|
|
|
("zerver", "0078_service"),
|
2017-05-10 08:02:21 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
2020-04-29 08:43:25 +02:00
|
|
|
migrations.RunPython(delete_old_scheduled_jobs, elidable=True),
|
2017-05-10 08:02:21 +02:00
|
|
|
]
|