mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +00:00
7 lines
162 B
MySQL
7 lines
162 B
MySQL
|
CREATE TABLE switcher_cards (
|
||
|
card_id TEXT PRIMARY KEY ON CONFLICT REPLACE,
|
||
|
type INT NOT NULL DEFAULT 0,
|
||
|
clock INT NOT NULL,
|
||
|
screen_id TEXT DEFAULT ""
|
||
|
);
|