mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +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.
8 lines
345 B
SQL
8 lines
345 B
SQL
-- This was renamed by mistake from 1662447680_add_keypairs_table.up.sql and is kept for backwards compatibility being a no-op
|
|
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
|
|
); |