create-postgres-database.sql 149 B

1234
  1. CREATE USER benchmarkdbuser WITH PASSWORD 'benchmarkdbpass';
  2. DROP DATABASE IF EXISTS hello_world;
  3. CREATE DATABASE hello_world WITH ENCODING 'UTF8';