create-postgres-database.sql 214 B

123456
  1. REATE 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;