mirror of
https://github.com/grassrootseconomics/cic-custodial.git
synced 2024-11-13 10:26:47 +01:00
8 lines
265 B
MySQL
8 lines
265 B
MySQL
|
-- Keystore table
|
||
|
CREATE TABLE IF NOT EXISTS keystore (
|
||
|
id INT GENERATED ALWAYS AS IDENTITY PRIMARY KEY,
|
||
|
public_key TEXT NOT NULL,
|
||
|
private_key TEXT NOT NULL,
|
||
|
active BOOLEAN DEFAULT true,
|
||
|
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
|
||
|
);
|