mirror of
				https://github.com/launchbadge/sqlx.git
				synced 2025-10-31 13:32:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			7 lines
		
	
	
		
			166 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			166 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
| create table "user"
 | |
| (
 | |
|     user_id       uuid primary key default gen_random_uuid(),
 | |
|     username      text unique not null,
 | |
|     password_hash text        not null
 | |
| );
 | 
