mirror of
				https://github.com/grocy/grocy.git
				synced 2025-10-31 18:49:38 +00:00 
			
		
		
		
	
		
			
	
	
		
			8 lines
		
	
	
		
			223 B
		
	
	
	
		
			MySQL
		
	
	
	
	
	
		
		
			
		
	
	
			8 lines
		
	
	
		
			223 B
		
	
	
	
		
			MySQL
		
	
	
	
	
	
|   | CREATE TABLE api_keys (
 | ||
|  | 	id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT UNIQUE,
 | ||
|  | 	api_key TEXT NOT NULL UNIQUE,
 | ||
|  | 	expires DATETIME,
 | ||
|  | 	last_used DATETIME,
 | ||
|  | 	row_created_timestamp DATETIME DEFAULT (datetime('now', 'localtime'))
 | ||
|  | )
 |