mirror of
				https://github.com/TriliumNext/Notes.git
				synced 2025-11-04 15:11:31 +08:00 
			
		
		
		
	
		
			
	
	
		
			12 lines
		
	
	
		
			262 B
		
	
	
	
		
			MySQL
		
	
	
	
	
	
		
		
			
		
	
	
			12 lines
		
	
	
		
			262 B
		
	
	
	
		
			MySQL
		
	
	
	
	
	
| 
								 | 
							
								drop table recent_notes;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								create table recent_notes
							 | 
						||
| 
								 | 
							
								(
							 | 
						||
| 
								 | 
							
								    noteId TEXT not null primary key,
							 | 
						||
| 
								 | 
							
								    notePath TEXT not null,
							 | 
						||
| 
								 | 
							
								    hash TEXT default "" not null,
							 | 
						||
| 
								 | 
							
								    utcDateCreated TEXT not null,
							 | 
						||
| 
								 | 
							
								    isDeleted INT
							 | 
						||
| 
								 | 
							
								);
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								delete from sync where entityName = 'recent_notes';
							 |