mirror of
				https://github.com/AppFlowy-IO/AppFlowy.git
				synced 2025-11-03 19:43:52 +00:00 
			
		
		
		
	* chore: rename flowy-database to flowy-sqlite * refactor: rename flowy-grid to flowy-database * refactor: rename grid to database * refactor: rename GridEvent to DatabaseEvent * refactor: rename grid_id to database_id * refactor: rename dart code
		
			
				
	
	
		
			9 lines
		
	
	
		
			322 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			322 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
-- Your SQL goes here
 | 
						|
CREATE TABLE grid_rev_snapshot (
 | 
						|
      snapshot_id TEXT NOT NULL PRIMARY KEY DEFAULT '',
 | 
						|
      object_id TEXT NOT NULL DEFAULT '',
 | 
						|
      rev_id BIGINT NOT NULL DEFAULT 0,
 | 
						|
      base_rev_id BIGINT NOT NULL DEFAULT 0,
 | 
						|
      timestamp BIGINT NOT NULL DEFAULT 0,
 | 
						|
      data BLOB NOT NULL DEFAULT (x'')
 | 
						|
); |