Skip to content

Commit 3b3bfb2

Browse files
committed
Add fastpath migration to oonimeasurements tests
1 parent 28cb8e0 commit 3b3bfb2

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

ooniapi/services/oonimeasurements/tests/migrations/0_clickhouse_init_tables.sql

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,18 @@ CREATE TABLE IF NOT EXISTS default.fastpath
3636
`blocking_type` String,
3737
`test_helper_address` LowCardinality(String),
3838
`test_helper_type` LowCardinality(String),
39-
`ooni_run_link_id` Nullable(UInt64)
39+
`ooni_run_link_id` Nullable(UInt64),
40+
`is_verified` Int8,
41+
`nym` Nullable(String),
42+
`zkp_request` Nullable(String),
43+
`age_range` Nullable(String),
44+
`msm_range` Nullable(String)
4045
)
4146
ENGINE = ReplacingMergeTree
4247
ORDER BY (measurement_start_time, report_id, input)
4348
SETTINGS index_granularity = 8192;
4449

45-
CREATE TABLE IF NOT EXISTS default.citizenlab
50+
CREATE TABLE IF NOT EXISTS default.citizenlab
4651
(
4752
`domain` String,
4853
`url` String,

0 commit comments

Comments
 (0)