mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 06:12:55 +00:00
f10bd00ceb
- `keypair_name` added to `accounts` table, all accounts derived from the same master key have the same keypair name and also no two keypairs share the same keypair name (keypair name is unique per keypair) - `last_used_derivation_index` added to `accounts` table, cause we need to maintain the highest index been used for the derivations made within the same keypair
2 lines
130 B
SQL
2 lines
130 B
SQL
ALTER TABLE accounts ADD keypair_name TEXT DEFAULT "";
|
|
ALTER TABLE accounts ADD last_used_derivation_index INT NOT NULL DEFAULT 0; |