mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2026-05-15 00:26:53 -04:00
7 lines
230 B
MySQL
7 lines
230 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 now(),
|
||
|
|
|
||
|
|
FOREIGN KEY(user_uuid) REFERENCES users(uuid)
|
||
|
|
);
|