зеркало из
				https://github.com/iharh/notes.git
				synced 2025-10-31 21:56:08 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			7 строки
		
	
	
		
			220 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			7 строки
		
	
	
		
			220 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| create role jpa with login password 'jpa-pwd';
 | |
| -- \du
 | |
| create database jpa_db with owner = jpa encoding = 'UTF8';
 | |
| -- \l
 | |
| create table if not exists j_user ( id integer not null constraint j_user_pkey primary key );
 | |
| -- \dt
 | 
