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.
		
		
		
		
		
			
		
			
				
					
					
						
							13 lines
						
					
					
						
							322 B
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							13 lines
						
					
					
						
							322 B
						
					
					
				| ALTER TABLE ciphers | |
| 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;
 | |
| 
 |