mirror of
				https://github.com/dani-garcia/vaultwarden.git
				synced 2025-10-27 00:10:02 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			35 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			SQL
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			SQL
		
	
	
	
	
	
| ALTER TABLE ciphers RENAME TO oldCiphers;
 | |
| 
 | |
| CREATE TABLE ciphers (
 | |
|   uuid              CHAR(36) NOT NULL PRIMARY KEY,
 | |
|   created_at        DATETIME NOT NULL,
 | |
|   updated_at        DATETIME NOT NULL,
 | |
|   user_uuid         CHAR(36) REFERENCES users (uuid), -- Make this optional
 | |
|   organization_uuid CHAR(36) REFERENCES organizations (uuid), -- Add reference to orgs table
 | |
|   -- Remove folder_uuid
 | |
|   type              INTEGER  NOT NULL,
 | |
|   name              TEXT     NOT NULL,
 | |
|   notes             TEXT,
 | |
|   fields            TEXT,
 | |
|   data              TEXT     NOT NULL,
 | |
|   favorite          BOOLEAN  NOT NULL
 | |
| );
 | |
| 
 | |
| CREATE TABLE folders_ciphers (
 | |
|   cipher_uuid CHAR(36) NOT NULL REFERENCES ciphers (uuid),
 | |
|   folder_uuid CHAR(36) NOT NULL REFERENCES folders (uuid),
 | |
| 
 | |
|   PRIMARY KEY (cipher_uuid, folder_uuid)
 | |
| );
 | |
| 
 | |
| INSERT INTO ciphers (uuid, created_at, updated_at, user_uuid, organization_uuid, type, name, notes, fields, data, favorite) 
 | |
| SELECT uuid, created_at, updated_at, user_uuid, organization_uuid, type, name, notes, fields, data, favorite FROM oldCiphers;
 | |
| 
 | |
| INSERT INTO folders_ciphers (cipher_uuid, folder_uuid)
 | |
| SELECT uuid, folder_uuid FROM oldCiphers WHERE folder_uuid IS NOT NULL;
 | |
| 
 | |
| 
 | |
| DROP TABLE oldCiphers;
 | |
| 
 | |
| ALTER TABLE users_collections ADD COLUMN read_only BOOLEAN NOT NULL DEFAULT 0; -- False
 |