mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2024-11-01 03:32:31 +00:00
c4d565b15b
- Updated jsonwebtoken to latest version - Trim `username` received from the login form ( Fixes #2348 ) - Make uuid and user_uuid a combined primary key for the devices table ( Fixes #2295 ) - Updated crates including regex which contains a CVE ( https://blog.rust-lang.org/2022/03/08/cve-2022-24713.html )
5 lines
160 B
SQL
5 lines
160 B
SQL
-- First remove the previous primary key
|
|
ALTER TABLE devices DROP PRIMARY KEY;
|
|
-- Add a new combined one
|
|
ALTER TABLE devices ADD PRIMARY KEY (uuid, user_uuid);
|