mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +00:00
e3969a7752
This commit re-introduces a feature that we lost during the migration to status-go. Messages are cached for a couple of days if processed correctly by status-go, to avoid performance issues.
5 lines
142 B
SQL
5 lines
142 B
SQL
CREATE TABLE IF NOT EXISTS transport_message_cache (
|
|
id VARCHAR NOT NULL PRIMARY KEY ON CONFLICT REPLACE,
|
|
timestamp INT NOT NULL
|
|
);
|