You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
402 B
11 lines
402 B
CREATE TABLE web_authn_credentials (
|
|
uuid TEXT NOT NULL PRIMARY KEY,
|
|
user_uuid TEXT NOT NULL,
|
|
name TEXT NOT NULL,
|
|
credential TEXT NOT NULL,
|
|
supports_prf BOOLEAN NOT NULL,
|
|
encrypted_user_key TEXT,
|
|
encrypted_public_key TEXT,
|
|
encrypted_private_key TEXT,
|
|
FOREIGN KEY(user_uuid) REFERENCES users(uuid)
|
|
);
|
|
|