0
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden synced 2024-09-26 20:38:54 +02:00
bitwarden_rs/migrations/postgresql/2021-08-30-193501_create_emergency_access/up.sql

15 lines
620 B
MySQL
Raw Normal View History

CREATE TABLE emergency_access (
uuid CHAR(36) NOT NULL PRIMARY KEY,
grantor_uuid CHAR(36) REFERENCES users (uuid),
grantee_uuid CHAR(36) REFERENCES users (uuid),
email VARCHAR(255),
key_encrypted TEXT,
atype INTEGER NOT NULL,
status INTEGER NOT NULL,
wait_time_days INTEGER NOT NULL,
recovery_initiated_at TIMESTAMP,
last_notification_at TIMESTAMP,
updated_at TIMESTAMP NOT NULL,
created_at TIMESTAMP NOT NULL
);