mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2024-11-15 17:57:12 +00:00
10 lines
225 B
MySQL
10 lines
225 B
MySQL
|
CREATE TABLE favorites (
|
||
|
user_uuid CHAR(36) NOT NULL REFERENCES users(uuid),
|
||
|
cipher_uuid CHAR(36) NOT NULL REFERENCES ciphers(uuid),
|
||
|
|
||
|
PRIMARY KEY (user_uuid, cipher_uuid)
|
||
|
);
|
||
|
|
||
|
ALTER TABLE ciphers
|
||
|
DROP COLUMN favorite;
|