Files
shorturl-analytics/scripts/db/sql/clickhouse/add_req_full_path.sql
2025-04-03 21:57:55 +08:00

9 lines
317 B
SQL

-- 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;