You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
286 B
MySQL
10 lines
286 B
MySQL
2 years ago
|
CREATE TABLE chat (
|
||
|
id uuid NOT NULL,
|
||
|
pub_time timestamp NOT NULL,
|
||
|
content jsonb NOT NULL
|
||
|
);
|
||
|
|
||
|
CREATE INDEX chat_time_idx ON chat (pub_time);
|
||
|
CREATE INDEX chat_message_idx ON chat USING
|
||
|
GIN (to_tsvector('english', content->'params'->>1));
|