Files
twenty_crm/packages/twenty-tinybird/datasources/webhookEventMV.datasource
Antoine Moreaux da527f1780 chore(ci): update Tinybird CI workflow (#11033)
Added a new job to check for changed files before executing the CI
workflow. Integrated Tinybird local service, updated environment
variables, and refined the CI steps for better functionality and
clarity.
2025-03-21 16:32:24 +01:00

14 lines
478 B
Plaintext

SCHEMA >
`timestamp` DateTime64(3) `json:$.timestamp`,
`workspaceId` String `json:$.workspaceId`,
`webhookId` String `json:$.webhookId`,
`url` String `json:$.url`,
`success` Bool `json:$.success`,
`status` Int64 `json:$.status`,
`eventName` LowCardinality(String) `json:$.eventName`,
`version` LowCardinality(String) `json:$.version`
ENGINE MergeTree
ENGINE_PARTITION_KEY toYYYYMM(timestamp)
ENGINE_SORTING_KEY workspaceId, webhookId, timestamp