18 lines
314 B
SQL
18 lines
314 B
SQL
CREATE DATABASE IF NOT EXISTS phasm_platform;
|
|
|
|
USE phasm_platform;
|
|
|
|
CREATE TABLE routing_logs
|
|
(
|
|
timestamp DateTime64(6, 'UTC'),
|
|
from_service String,
|
|
from_container String,
|
|
from_method String,
|
|
to_service String,
|
|
to_container String,
|
|
to_method String,
|
|
result String,
|
|
)
|
|
ENGINE = MergeTree
|
|
ORDER BY timestamp;
|