mirror of
https://github.com/status-im/status-go.git
synced 2025-01-25 05:58:59 +00:00
aa4d95917c
Remove Favourites APIs and update the saved address APIs Added up migration scripts that move the favourites from the old table to the saved_addresses table with true flag and then drop the favourites table. Required by #6546
7 lines
218 B
SQL
7 lines
218 B
SQL
CREATE TABLE IF NOT EXISTS keypairs (
|
|
keycard_uid VARCHAR NOT NULL,
|
|
keycard_name VARCHAR NOT NULL,
|
|
keycard_locked BOOLEAN DEFAULT FALSE,
|
|
account_address VARCHAR NOT NULL,
|
|
key_uid VARCHAR NOT NULL
|
|
); |