mirror of
				https://github.com/dani-garcia/vaultwarden.git
				synced 2025-11-04 12:18:20 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			409 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			409 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
ALTER TABLE attachments RENAME TO oldAttachments;
 | 
						|
 | 
						|
CREATE TABLE attachments (
 | 
						|
  id          CHAR(36) NOT NULL PRIMARY KEY,
 | 
						|
  cipher_uuid CHAR(36) NOT NULL REFERENCES ciphers (uuid),
 | 
						|
  file_name   TEXT    NOT NULL,
 | 
						|
  file_size   INTEGER NOT NULL
 | 
						|
 | 
						|
);
 | 
						|
 | 
						|
INSERT INTO attachments (id, cipher_uuid, file_name, file_size) 
 | 
						|
SELECT id, cipher_uuid, file_name, file_size FROM oldAttachments;
 | 
						|
 | 
						|
DROP TABLE oldAttachments;
 |