From e7fb3a9addbfa1a36287273eea9e48ca67770c4b Mon Sep 17 00:00:00 2001 From: decfox Date: Mon, 31 Aug 2026 10:46:15 +0530 Subject: [PATCH] feat: introduce wc_x_flags in fastpath as nullable uint16 column --- scripts/cluster-migration/schema.sql | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/cluster-migration/schema.sql b/scripts/cluster-migration/schema.sql index ab092fb2..e0a88a49 100644 --- a/scripts/cluster-migration/schema.sql +++ b/scripts/cluster-migration/schema.sql @@ -244,4 +244,6 @@ ALTER TABLE ooni.fastpath DROP COLUMN IF EXISTS `nym`; ALTER TABLE ooni.fastpath DROP COLUMN IF EXISTS `zkp_request`; ALTER TABLE ooni.fastpath DROP COLUMN IF EXISTS `age_range`; ALTER TABLE ooni.fastpath DROP COLUMN IF EXISTS `msm_range`; -ALTER TABLE ooni.fastpath MODIFY COLUMN `is_verified` LowCardinality(String) DEFAULT 'u'; \ No newline at end of file +ALTER TABLE ooni.fastpath MODIFY COLUMN `is_verified` LowCardinality(String) DEFAULT 'u'; + +ALTER TABLE ooni.fastpath ADD COLUMN IF NOT EXISTS `wc_x_flags` Nullable(UInt16);