mirror of
				https://github.com/slawkens/myaac.git
				synced 2025-11-04 01:36:23 +01:00 
			
		
		
		
	* feat: Resend Email Verify + rework the whole concept, based on new table for email hashes This make it possible that every email will work, not matter if first or last * Nothing important: change variable name * Change message
		
			
				
	
	
		
			9 lines
		
	
	
		
			240 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			240 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
CREATE TABLE `myaac_account_emails_verify`
 | 
						|
(
 | 
						|
	`id` int NOT NULL AUTO_INCREMENT,
 | 
						|
	`account_id` int NOT NULL,
 | 
						|
	`hash` varchar(32) NOT NULL,
 | 
						|
	`sent_at` int NOT NULL DEFAULT 0,
 | 
						|
	PRIMARY KEY (`id`)
 | 
						|
) ENGINE=InnoDB DEFAULT CHARACTER SET=utf8mb4;
 |