mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 06:12:55 +00:00
5 lines
234 B
MySQL
5 lines
234 B
MySQL
|
CREATE TABLE envelopes (id BYTEA NOT NULL UNIQUE, data BYTEA NOT NULL, topic BYTEA NOT NULL, bloom BIT(512) NOT NULL);
|
||
|
|
||
|
CREATE INDEX id_bloom_idx ON envelopes (id DESC, bloom);
|
||
|
CREATE INDEX id_topic_idx ON envelopes (id DESC, topic);
|