vercel_deployment_events
Raw Vercel deployments. Successful deployments to a production (or allowlisted) environment are promoted into unified deployments records.
-
id
Primary key - Unique identifier for the row.
-
source_id
Foreign key - Unique identifier of the deployment in Vercel.
-
project_id
Foreign key - ID of the vercel_project the deployment belongs to.
-
sha
string - Commit SHA that was deployed. Null for deployments with no git metadata, such as CLI deploys.
-
ref
string - Git branch or ref that was deployed.
-
task
string - How the deployment was triggered in Vercel (git, cli, redeploy, git-deploy-hook, import).
-
success
boolean - Whether the deployment reached the READY state.
-
environment
string - Environment the deployment targeted. Vercel's "production" and "staging" targets are stored as-is; preview deployments (a null target in Vercel) are stored as "preview".
-
production_environment
boolean - Whether the deployment targeted the production environment.
-
state
string - Lowercased Vercel readyState (ready, error, canceled, building, queued, initializing, blocked, deleted), or "abandoned" when the deployment no longer exists in Vercel.
-
created_at
date - When the deployment was created in Vercel.
-
finished_at
date - When the deployment became ready. Null for deployments that failed or were canceled, because Vercel exposes no equivalent timestamp for those.
-
source_url
string - Vercel dashboard URL for inspecting the deployment.
-
synced_at
date - When DX last synced this deployment from the Vercel API.