データベース - postgreSQL - データベース作成
1. 概要 そういやメモ残してなかったな。 2. データベース作成 「postgres」ユーザで、「psql」を開いて create database データベース名 with template = template0 owner = オーナロール名; 「with template = template0」の部分は、おまじないみたいなもんだと思ってます。
create database データベース名 with template = template0 owner = オーナロール名;