mirror of
https://github.com/status-im/status-go.git
synced 2025-01-11 15:14:52 +00:00
8 lines
216 B
MySQL
8 lines
216 B
MySQL
|
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
|
||
|
);
|