Skip to content

Commit 6b0cc88

Browse files
authored
fix: adding default value to isContribution in activityRelations ingestion datasource (#3582)
1 parent 4551ae8 commit 6b0cc88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

services/libs/tinybird/datasources/activityRelations.datasource

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ SCHEMA >
4747
`gitInsertions` UInt32 `json:$.record.gitInsertions` DEFAULT 0,
4848
`gitDeletions` UInt32 `json:$.record.gitDeletions` DEFAULT 0,
4949
`score` Int8 `json:$.record.score` DEFAULT -1,
50-
`isContribution` UInt8 `json:$.record.isContribution`,
50+
`isContribution` UInt8 `json:$.record.isContribution` DEFAULT 0,
5151
`pullRequestReviewState` LowCardinality(String) `json:$.record.pullRequestReviewState` DEFAULT ''
5252

5353
ENGINE ReplacingMergeTree

0 commit comments

Comments
 (0)