mirror of
				https://github.com/TriliumNext/Notes.git
				synced 2025-11-04 15:11:31 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			7 lines
		
	
	
		
			159 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			159 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
DROP TABLE recent_notes;
 | 
						|
 | 
						|
CREATE TABLE `recent_notes` (
 | 
						|
    `note_path` TEXT NOT NULL PRIMARY KEY,
 | 
						|
    `date_accessed` INTEGER NOT NULL ,
 | 
						|
    is_deleted INT
 | 
						|
); |