|
@@ -0,0 +1,34 @@
|
|
|
+# Generated by Django 2.2.28 on 2023-05-19 17:25
|
|
|
+
|
|
|
+from django.db import migrations
|
|
|
+
|
|
|
+from sentry.new_migrations.migrations import CheckedMigration
|
|
|
+from sentry.utils.query import RangeQuerySetWrapperWithProgressBar
|
|
|
+
|
|
|
+
|
|
|
+def _backfill(apps, schema_editor):
|
|
|
+ cls = apps.get_model("sentry", "ProcessingIssue")
|
|
|
+
|
|
|
+ for obj in RangeQuerySetWrapperWithProgressBar(cls.objects.all()):
|
|
|
+ # load pickle, save json
|
|
|
+ obj.save(update_fields=["data"])
|
|
|
+
|
|
|
+
|
|
|
+class Migration(CheckedMigration):
|
|
|
+ # data migration: must be run out of band
|
|
|
+ is_dangerous = True
|
|
|
+
|
|
|
+ # data migration: run outside of a transaction
|
|
|
+ atomic = False
|
|
|
+
|
|
|
+ dependencies = [
|
|
|
+ ("sentry", "0462_pickle_to_json_sentry_grouptombstone"),
|
|
|
+ ]
|
|
|
+
|
|
|
+ operations = [
|
|
|
+ migrations.RunPython(
|
|
|
+ _backfill,
|
|
|
+ migrations.RunPython.noop,
|
|
|
+ hints={"tables": ["sentry_processingissue"]},
|
|
|
+ ),
|
|
|
+ ]
|