mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 06:12:55 +00:00
5b0d8a7c4e
Restore the old, previously renamed, 1662447680_add_keypairs_table.up.sql file while keeping the current one for those who already migrated to the new one. The extra migration is noop and saves to keep consistency in the user data states history.
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
|
|
); |