データベースを作成
create database test01 \l List of databases Name | Owner | Encoding | Locale Provider | Collate | Ctype | Locale | ICU Rules | Access privileges -----------+----------+----------+-----------------+------------+------------+--------+-----------+----------------------- postgres | postgres | UTF8 | libc | en_US.utf8 | en_US.utf8 | | | template0 | postgres | UTF8 | libc | en_US.utf8 | en_US.utf8 | | | =c/postgres + | | | | | | | | postgres=CTc/postgres template1 | postgres | UTF8 | libc | en_US.utf8 | en_US.utf8 | | | =c/postgres + | | | | | | | | postgres=CTc/postgres test01 | postgres | UTF8 | libc | en_US.utf8 | en_US.utf8 | | | (4 rows)
change
\c test01
ロールとユーザーを作成
test01=> create role test with login password 'test';
権限付与
test01=> GRANT CREATE ON SCHEMA public TO test;