mirror of
https://github.com/kubernetes/kubernetes.git
synced 2026-02-21 17:03:08 -05:00
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
|
||
|
|
|