Skip to content

Instantly share code, notes, and snippets.

@piyushgarg-dev
Last active February 19, 2024 05:03
Show Gist options
  • Save piyushgarg-dev/cad5f052676deb89e12112302ac836b3 to your computer and use it in GitHub Desktop.
Save piyushgarg-dev/cad5f052676deb89e12112302ac836b3 to your computer and use it in GitHub Desktop.
Vercel Clone 2.0 Commands
CREATE TABLE log_events (
event_id UUID,
timestamp DateTime MATERIALIZED now(),
deployment_id Nullable(String),
log String,
metadata Nullable(String)
)
ENGINE=MergeTree PARTITION BY toYYYYMM(timestamp)
ORDER BY (timestamp);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment