create-postgres-database.sql 177 B

12345
  1. CREATE USER benchmarkdbuser WITH PASSWORD 'benchmarkdbpass';
  2. ALTER USER benchmarkdbuser WITH SUPERUSER;
  3. CREATE DATABASE hello_world WITH TEMPLATE = template0 ENCODING 'UTF8';