mirror of
				https://github.com/zadam/trilium.git
				synced 2025-11-03 20:06:08 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			238 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			238 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
DROP TABLE recent_notes;
 | 
						|
 | 
						|
CREATE TABLE `recent_notes` (
 | 
						|
  'note_tree_id'TEXT NOT NULL PRIMARY KEY,
 | 
						|
  `note_path` TEXT NOT NULL,
 | 
						|
  `date_accessed` INTEGER NOT NULL ,
 | 
						|
  is_deleted INT
 | 
						|
);
 | 
						|
 | 
						|
DELETE FROM sync WHERE entity_name = 'recent_notes'; |