mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +00:00
12 lines
311 B
MySQL
12 lines
311 B
MySQL
|
DROP TABLE ratchet_info_v2;
|
||
|
|
||
|
CREATE TABLE ratchet_info (
|
||
|
bundle_id BLOB NOT NULL,
|
||
|
ephemeral_key BLOB,
|
||
|
identity BLOB NOT NULL,
|
||
|
symmetric_key BLOB NOT NULL,
|
||
|
installation_id TEXT NOT NULL,
|
||
|
UNIQUE(bundle_id, identity) ON CONFLICT REPLACE,
|
||
|
FOREIGN KEY (bundle_id) REFERENCES bundles(signed_pre_key)
|
||
|
);
|