mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2025-12-23 17:25:00 +03:00
8 lines
230 B
MySQL
8 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)
|
||
|
|
);
|