status-go/appdatabase/migrations/sql/1662972194_add_keypairs_table.up.sql
Stefan aa4d95917c feat: merge favourites with saved address
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
2022-09-12 13:46:04 +02:00

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
);