mirror of
				https://github.com/grocy/grocy.git
				synced 2025-10-31 10:46:36 +00:00 
			
		
		
		
	
		
			
	
	
		
			7 lines
		
	
	
		
			206 B
		
	
	
	
		
			MySQL
		
	
	
	
	
	
		
		
			
		
	
	
			7 lines
		
	
	
		
			206 B
		
	
	
	
		
			MySQL
		
	
	
	
	
	
|   | CREATE TABLE habits_log (
 | ||
|  | 	id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT UNIQUE,
 | ||
|  | 	habit_id INTEGER NOT NULL,
 | ||
|  | 	tracked_time DATETIME,
 | ||
|  | 	row_created_timestamp DATETIME DEFAULT (datetime('now', 'localtime'))
 | ||
|  | )
 |