Skip to content

Instantly share code, notes, and snippets.

@ffbit
Created March 3, 2013 12:19
Show Gist options
  • Select an option

  • Save ffbit/5075901 to your computer and use it in GitHub Desktop.

Select an option

Save ffbit/5075901 to your computer and use it in GitHub Desktop.
Sonar PostgreSQL preparation
CREATE ROLE sonar WITH LOGIN PASSWORD 'password';
CREATE DATABASE sonar
WITH OWNER = sonar
ENCODING 'UTF8';
GRANT ALL PRIVILEGES ON DATABASE sonar TO sonar;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment