mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2026-05-15 16:46:53 -04:00
7 lines
242 B
MySQL
7 lines
242 B
MySQL
|
|
CREATE TABLE sso_users (
|
||
|
|
user_uuid CHAR(36) NOT NULL PRIMARY KEY,
|
||
|
|
identifier TEXT NOT NULL UNIQUE,
|
||
|
|
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||
|
|
|
||
|
|
FOREIGN KEY(user_uuid) REFERENCES users(uuid)
|
||
|
|
);
|