create-postgres-database.sql 215 B

123456
  1. CREATE USER benchmarkdbuser WITH PASSWORD 'benchmarkdbpass';
  2. DROP DATABASE IF EXISTS hello_world;
  3. CREATE DATABASE hello_world WITH ENCODING 'UTF8';
  4. GRANT ALL PRIVILEGES ON DATABASE hello_world to benchmarkdbuser;