From 2f381e7052836f19cd7e296162a75613a3b63417 Mon Sep 17 00:00:00 2001 From: MrBrass Date: Wed, 7 Oct 2015 19:21:54 -0400 Subject: [PATCH] This one's been bugging me for way too long --- doc/database.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/database.md b/doc/database.md index a7f616d..bf61a13 100644 --- a/doc/database.md +++ b/doc/database.md @@ -15,9 +15,9 @@ Setting up postgres (as root) You'll get a prompt, enter the following: - CREATE ROLE srnduser WITH LOGIN PASSWORD 'srndpassword'; - CREATE DATABASE srnd WITH ENCODING 'UTF8' OWNER srnduser; + CREATE ROLE srnd WITH LOGIN PASSWORD 'srndpassword'; + CREATE DATABASE srnd WITH ENCODING 'UTF8' OWNER srnd; \q Change the username and password as desired. - +The username has to be the same as the database name.