mirror of
https://github.com/status-im/status-go.git
synced 2025-02-08 12:54:37 +00:00
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
|
|
);
|