Skip to content

Commit

Permalink
fix(eap-spans): Make project_id index removal migration a no-op (#6215)
Browse files Browse the repository at this point in the history
  • Loading branch information
phacops authored Aug 15, 2024
1 parent 43ec56a commit 5155a47
Showing 1 changed file with 2 additions and 13 deletions.
Original file line number Diff line number Diff line change
@@ -1,25 +1,14 @@
from typing import Sequence

from snuba.clusters.storage_sets import StorageSetKey
from snuba.migrations import migration, operations
from snuba.migrations import migration
from snuba.migrations.operations import SqlOperation

storage_set_name = StorageSetKey.EVENTS_ANALYTICS_PLATFORM
local_table_name = "eap_spans_local"


class Migration(migration.ClickhouseNodeMigration):
blocking = False

def forwards_ops(self) -> Sequence[SqlOperation]:
return [
operations.DropIndex(
storage_set=StorageSetKey.EVENTS_ANALYTICS_PLATFORM,
table_name="eap_spans_local",
index_name="bf_project_id",
target=operations.OperationTarget.LOCAL,
),
]
return []

def backwards_ops(self) -> Sequence[SqlOperation]:
return []

0 comments on commit 5155a47

Please sign in to comment.