mirror of
				https://github.com/elyby/oauth2-server.git
				synced 2025-05-31 14:12:07 +05:30 
			
		
		
		
	Adding missing column to oauth_session_authcodes
This commit is contained in:
		@@ -41,6 +41,7 @@ CREATE TABLE `oauth_session_authcodes` (
 | 
			
		||||
  `session_id` int(10) unsigned NOT NULL,
 | 
			
		||||
  `auth_code` char(40) NOT NULL DEFAULT '',
 | 
			
		||||
  `auth_code_expires` int(10) unsigned NOT NULL,
 | 
			
		||||
  `scope_ids` char(255) DEFAULT NULL,
 | 
			
		||||
  PRIMARY KEY (`session_id`),
 | 
			
		||||
  CONSTRAINT `f_oaseau_seid` FOREIGN KEY (`session_id`) REFERENCES `oauth_sessions` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION
 | 
			
		||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user