Added database tables for Nonce
							parent
							
								
									a4637ec395
								
							
						
					
					
						commit
						8f8a3754db
					
				|  | @ -113,6 +113,14 @@ CREATE TABLE IF NOT EXISTS client_details ( | |||
| 	default_acr VARCHAR(256) | ||||
| ); | ||||
| 
 | ||||
| CREATE TABLE IF NOT EXISTS client_nonce ( | ||||
| 	id BIGINT GENERATED BY DEFAULT AS IDENTITY(START WITH 1) PRIMARY KEY, | ||||
| 	value VARCHAR(256), | ||||
| 	client_id VARCHAR(256), | ||||
| 	use_date DATE, | ||||
| 	expire_date DATE | ||||
| ); | ||||
| 
 | ||||
| CREATE TABLE IF NOT EXISTS contact ( | ||||
| 	owner_id BIGINT, | ||||
| 	contact VARCHAR(256) | ||||
|  |  | |||
|  | @ -108,6 +108,14 @@ CREATE TABLE client_details ( | |||
| 	default_acr VARCHAR(256) | ||||
| ); | ||||
| 
 | ||||
| CREATE TABLE client_nonce (  | ||||
| 	id BIGINT AUTO_INCREMENT PRIMARY KEY, | ||||
| 	value VARCHAR(256), | ||||
| 	client_id VARCHAR(256), | ||||
| 	use_date DATE, | ||||
| 	expire_date DATE | ||||
| ); | ||||
| 
 | ||||
| CREATE TABLE contact ( | ||||
| 	owner_id BIGINT, | ||||
| 	contact VARCHAR(256) | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue
	
	 Amanda Anganes
						Amanda Anganes