show label

This commit is contained in:
2025-04-03 21:57:55 +08:00
parent d1d21948b6
commit 1a9e28bd7e
2 changed files with 18 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
-- add_req_full_path.sql
-- Add req_full_path column to the shorturl_analytics.events table
ALTER TABLE
shorturl_analytics.events
ADD
COLUMN IF NOT EXISTS req_full_path String COMMENT 'Full request path including query parameters';
-- Display the updated table structure
DESCRIBE TABLE shorturl_analytics.events;