mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +00:00
ed5a5c154d
Move to a monorepo structure with submodules - Rename status-protocol-go to status-go/protocol
8 lines
216 B
SQL
8 lines
216 B
SQL
CREATE TABLE installations (
|
|
identity BLOB NOT NULL,
|
|
installation_id TEXT NOT NULL,
|
|
timestamp UNSIGNED BIG INT NOT NULL,
|
|
enabled BOOLEAN DEFAULT 1,
|
|
UNIQUE(identity, installation_id) ON CONFLICT REPLACE
|
|
);
|