mirror of
				https://github.com/grocy/grocy.git
				synced 2025-10-25 13:36:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			7 lines
		
	
	
		
			216 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			216 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
| CREATE TABLE battery_charge_cycles (
 | |
| 	id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT UNIQUE,
 | |
| 	battery_id TEXT NOT NULL,
 | |
| 	tracked_time DATETIME,
 | |
| 	row_created_timestamp DATETIME DEFAULT (datetime('now', 'localtime'))
 | |
| )
 |