mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 18:36:30 +01:00 
			
		
		
		
	
		
			
	
	
		
			22 lines
		
	
	
		
			647 B
		
	
	
	
		
			MySQL
		
	
	
	
	
	
		
		
			
		
	
	
			22 lines
		
	
	
		
			647 B
		
	
	
	
		
			MySQL
		
	
	
	
	
	
|  | create table labels
 | ||
|  | (
 | ||
|  |   labelId  TEXT not null primary key,
 | ||
|  |   noteId       TEXT not null,
 | ||
|  |   name         TEXT not null,
 | ||
|  |   value        TEXT default '' not null,
 | ||
|  |   position     INT  default 0 not null,
 | ||
|  |   dateCreated  TEXT not null,
 | ||
|  |   dateModified TEXT not null,
 | ||
|  |   isDeleted    INT  not null
 | ||
|  | );
 | ||
|  | 
 | ||
|  | create index IDX_labels_name_value
 | ||
|  |   on labels (name, value);
 | ||
|  | 
 | ||
|  | create index IDX_labels_noteId
 | ||
|  |   on labels (noteId);
 | ||
|  | 
 | ||
|  | INSERT INTO labels (labelId, noteId, name, "value", "position", dateCreated, dateModified, isDeleted)
 | ||
|  |   SELECT attributeId, noteId, name, "value", "position", dateCreated, dateModified, isDeleted FROM attributes;
 | ||
|  | 
 | ||
|  | DROP TABLE attributes;
 |