13 lines
316 B
SQL
13 lines
316 B
SQL
ATTACH TABLE _ UUID 'dedff8ef-33fa-4b7f-ae66-ab20b40fea65'
|
|
(
|
|
`game_no` UInt64,
|
|
`user_id` UInt64,
|
|
`chair` UInt8,
|
|
`bet_amount` UInt64,
|
|
`total_bet` UInt64,
|
|
`created_at` DateTime64(3) DEFAULT now64(3)
|
|
)
|
|
ENGINE = MergeTree
|
|
ORDER BY (game_no, user_id, created_at)
|
|
SETTINGS index_granularity = 8192
|