mirror of
https://github.com/status-im/status-go.git
synced 2025-01-10 06:36:32 +00:00
5 lines
142 B
MySQL
5 lines
142 B
MySQL
|
CREATE TABLE IF NOT EXISTS transport_message_cache (
|
||
|
id VARCHAR NOT NULL PRIMARY KEY ON CONFLICT REPLACE,
|
||
|
timestamp INT NOT NULL
|
||
|
);
|