mirror of https://github.com/k3s-io/k3s
9 lines
207 B
MySQL
9 lines
207 B
MySQL
![]() |
CREATE TABLE messages (
|
||
|
page BIGINT(20) UNSIGNED,
|
||
|
time_created_ns BIGINT(20) UNSIGNED,
|
||
|
keyspace_id BIGINT(20) UNSIGNED,
|
||
|
message VARCHAR(10000),
|
||
|
PRIMARY KEY (page, time_created_ns)
|
||
|
) ENGINE=InnoDB
|
||
|
|