From 419c53ec62de6e97a517abd5fdd4cbde3a942a34 Mon Sep 17 00:00:00 2001 From: GitLab Bot Date: Thu, 19 Oct 2023 12:57:54 +0000 Subject: Add latest changes from gitlab-org/gitlab@16-5-stable-ee --- db/click_house/main/20230705124511_create_events.sql | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'db/click_house/main/20230705124511_create_events.sql') diff --git a/db/click_house/main/20230705124511_create_events.sql b/db/click_house/main/20230705124511_create_events.sql index 45e0139165a..8af45443e4c 100644 --- a/db/click_house/main/20230705124511_create_events.sql +++ b/db/click_house/main/20230705124511_create_events.sql @@ -6,10 +6,11 @@ CREATE TABLE events target_id UInt64 DEFAULT 0, target_type LowCardinality(String) DEFAULT '', action UInt8 DEFAULT 0, + deleted UInt8 DEFAULT 0, created_at DateTime64(6, 'UTC') DEFAULT now(), updated_at DateTime64(6, 'UTC') DEFAULT now() ) -ENGINE = ReplacingMergeTree(updated_at) +ENGINE = ReplacingMergeTree(updated_at, deleted) PRIMARY KEY (id) ORDER BY (id) PARTITION BY toYear(created_at) -- cgit v1.2.3