We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25ea186 commit fda7429Copy full SHA for fda7429
tinybird/datasources/stripe.datasource
@@ -8,13 +8,13 @@ SCHEMA >
8
`id` String `json:$.id`,
9
`object` LowCardinality(String) `json:$.object`,
10
`api_version` LowCardinality(String) `json:$.api_version` DEFAULT '',
11
- `created` DateTime `json:$.created`,
+ `date` DateTime `json:$.created`,
12
`type` LowCardinality(String) `json:$.type`,
13
`livemode` Bool `json:$.livemode`,
14
`data` JSON `json:$.data` DEFAULT '{}',
15
`request` JSON `json:$.request` DEFAULT '{}',
16
`account` String `json:$.account` DEFAULT ''
17
18
ENGINE "MergeTree"
19
-ENGINE_PARTITION_KEY "toYYYYMM(created)"
20
-ENGINE_SORTING_KEY "type, created"
+ENGINE_PARTITION_KEY "toYYYYMM(date)"
+ENGINE_SORTING_KEY "type, date"
0 commit comments