mirror of
https://github.com/ViViDboarder/bitwarden_rs.git
synced 2024-11-01 10:56:39 +00:00
17 lines
417 B
SQL
17 lines
417 B
SQL
CREATE TABLE favorites (
|
|
user_uuid VARCHAR(40) NOT NULL REFERENCES users(uuid),
|
|
cipher_uuid VARCHAR(40) NOT NULL REFERENCES ciphers(uuid),
|
|
|
|
PRIMARY KEY (user_uuid, cipher_uuid)
|
|
);
|
|
|
|
-- Transfer favorite status for user-owned ciphers.
|
|
INSERT INTO favorites(user_uuid, cipher_uuid)
|
|
SELECT user_uuid, uuid
|
|
FROM ciphers
|
|
WHERE favorite = TRUE
|
|
AND user_uuid IS NOT NULL;
|
|
|
|
ALTER TABLE ciphers
|
|
DROP COLUMN favorite;
|