mirror of
https://github.com/ViViDboarder/bitwarden_rs.git
synced 2024-10-31 18:36:37 +00:00
f83a8a36d1
Currently, favorites are tracked at the cipher level. For org-owned ciphers, this means that if one user sets it as a favorite, it automatically becomes a favorite for all other users that the cipher has been shared with.
5 lines
81 B
SQL
5 lines
81 B
SQL
DROP TABLE favorites;
|
|
|
|
ALTER TABLE ciphers
|
|
ADD COLUMN favorite BOOLEAN NOT NULL;
|