You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
320 B
14 lines
320 B
ALTER TABLE ciphers
|
|
ADD COLUMN favorite BOOLEAN NOT NULL DEFAULT FALSE;
|
|
|
|
-- Transfer favorite status for user-owned ciphers.
|
|
UPDATE ciphers
|
|
SET favorite = TRUE
|
|
WHERE EXISTS (
|
|
SELECT * FROM favorites
|
|
WHERE favorites.user_uuid = ciphers.user_uuid
|
|
AND favorites.cipher_uuid = ciphers.uuid
|
|
);
|
|
|
|
DROP TABLE favorites;
|