12 lines
288 B
SQL
12 lines
288 B
SQL
CREATE TABLE IF NOT EXISTS promote.sync_logs (
|
|
timestamp DateTime,
|
|
duration_ms UInt64,
|
|
posts_synced UInt32,
|
|
comments_synced UInt32,
|
|
influencer_changes_synced UInt32,
|
|
projects_synced UInt32,
|
|
success UInt8,
|
|
error_messages String
|
|
) ENGINE = MergeTree()
|
|
ORDER BY
|
|
(timestamp) |