Skip to content

Commit

Permalink
fix: migration updated
Browse files Browse the repository at this point in the history
  • Loading branch information
nityanandagohain committed Oct 6, 2023
1 parent b85df49 commit ef226a9
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@

ALTER TABLE signoz_logs.logs ON CLUSTER cluster DROP column IF NOT EXISTS attributes_bool_key Array(String) CODEC(ZSTD(1));
ALTER TABLE signoz_logs.logs ON CLUSTER cluster DROP column IF EXISTS attributes_bool_key;

ALTER TABLE signoz_logs.logs ON CLUSTER cluster DROP column IF NOT EXISTS attributes_bool_value Array(Bool) CODEC(ZSTD(1));
ALTER TABLE signoz_logs.logs ON CLUSTER cluster DROP column IF EXISTS attributes_bool_value;

ALTER TABLE signoz_logs.distributed_logs ON CLUSTER cluster DROP column IF NOT EXISTS attributes_bool_key Array(String) CODEC(ZSTD(1));
ALTER TABLE signoz_logs.distributed_logs ON CLUSTER cluster DROP column IF EXISTS attributes_bool_key;

ALTER TABLE signoz_logs.distributed_logs ON CLUSTER cluster DROP column IF NOT EXISTS attributes_bool_value Array(Bool) CODEC(ZSTD(1));
ALTER TABLE signoz_logs.distributed_logs ON CLUSTER cluster DROP column IF EXISTS attributes_bool_value;

DROP TABLE IF EXISTS signoz_logs.attribute_keys_bool_final_mv ON CLUSTER cluster;

0 comments on commit ef226a9

Please sign in to comment.