Skip to content

Commit 0e0b311

Browse files
committed
Null out previous migration
1 parent a39e739 commit 0e0b311

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

src/sentry/migrations/0641_backfill_group_attributes.py

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
from typing import TYPE_CHECKING
88

99
from django.conf import settings
10-
from django.db import migrations
1110
from django.db.backends.base.schema import BaseDatabaseSchemaEditor
1211
from django.db.migrations.state import StateApps
1312
from django.db.models import F, Window
@@ -178,10 +177,4 @@ class Migration(CheckedMigration):
178177
("sentry", "0640_index_together"),
179178
]
180179

181-
operations = [
182-
migrations.RunPython(
183-
backfill_group_attributes_to_snuba,
184-
reverse_code=migrations.RunPython.noop,
185-
hints={"tables": ["sentry_groupedmessage"]},
186-
)
187-
]
180+
operations = []

0 commit comments

Comments
 (0)