notes/db/sql/postgres/simple-start.txt
Ihar Hancharenka 5dff80e88e first
2023-03-27 16:52:17 +03:00

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