mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2024-11-15 09:54:09 +00:00
4ab9362971
Signed-off-by: thelittlefireman <thelittlefireman@users.noreply.github.com>
14 lines
595 B
SQL
14 lines
595 B
SQL
CREATE TABLE emergency_access (
|
|
uuid TEXT NOT NULL PRIMARY KEY,
|
|
grantor_uuid TEXT REFERENCES users (uuid),
|
|
grantee_uuid TEXT REFERENCES users (uuid),
|
|
email TEXT,
|
|
key_encrypted TEXT,
|
|
atype INTEGER NOT NULL,
|
|
status INTEGER NOT NULL,
|
|
wait_time_days INTEGER NOT NULL,
|
|
recovery_initiated_at DATETIME,
|
|
last_notification_at DATETIME,
|
|
updated_at DATETIME NOT NULL,
|
|
created_at DATETIME NOT NULL
|
|
); |