mirror of
				https://github.com/dani-garcia/vaultwarden.git
				synced 2025-10-31 10:18:19 +02:00 
			
		
		
		
	Transfer favorite status for user-owned ciphers
This commit is contained in:
		| @@ -1,4 +1,13 @@ | ||||
| DROP TABLE favorites; | ||||
|  | ||||
| ALTER TABLE ciphers | ||||
| ADD COLUMN favorite BOOLEAN NOT NULL; | ||||
| ADD COLUMN favorite BOOLEAN NOT NULL DEFAULT 0; -- FALSE | ||||
|  | ||||
| -- Transfer favorite status for user-owned ciphers. | ||||
| UPDATE ciphers | ||||
| SET favorite = 1 | ||||
| WHERE EXISTS ( | ||||
|   SELECT * FROM favorites | ||||
|   WHERE favorites.user_uuid = ciphers.user_uuid | ||||
|     AND favorites.cipher_uuid = ciphers.uuid | ||||
| ); | ||||
|  | ||||
| DROP TABLE favorites; | ||||
|   | ||||
| @@ -5,6 +5,13 @@ CREATE TABLE favorites ( | ||||
|   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 = 1 | ||||
|   AND user_uuid IS NOT NULL; | ||||
|  | ||||
| -- Drop the `favorite` column from the `ciphers` table, using the 12-step | ||||
| -- procedure from <https://www.sqlite.org/lang_altertable.html#altertabrename>. | ||||
| -- Note that some steps aren't applicable and are omitted. | ||||
|   | ||||
		Reference in New Issue
	
	Block a user