9 lines
317 B
SQL
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; |