mirror of
				https://github.com/AppFlowy-IO/AppFlowy.git
				synced 2025-10-31 01:54:37 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			6 lines
		
	
	
		
			150 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
		
			150 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
| -- Add migration script here
 | |
| CREATE TABLE IF NOT EXISTS doc_table(
 | |
|     id uuid NOT NULL,
 | |
|     PRIMARY KEY (id),
 | |
|     rev_id bigint NOT NULL DEFAULT 0
 | |
| ); | 
