Spiegel von
https://github.com/dani-garcia/vaultwarden.git
synchronisiert 2024-11-05 02:28:00 +01:00
8 Zeilen
230 B
MySQL
8 Zeilen
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)
|
||
|
);
|