Archived
1
0

This one's been bugging me for way too long

This commit is contained in:
MrBrass 2015-10-07 19:21:54 -04:00
parent 3a13943d49
commit 2f381e7052

View File

@ -15,9 +15,9 @@ Setting up postgres (as root)
You'll get a prompt, enter the following: You'll get a prompt, enter the following:
CREATE ROLE srnduser WITH LOGIN PASSWORD 'srndpassword'; CREATE ROLE srnd WITH LOGIN PASSWORD 'srndpassword';
CREATE DATABASE srnd WITH ENCODING 'UTF8' OWNER srnduser; CREATE DATABASE srnd WITH ENCODING 'UTF8' OWNER srnd;
\q \q
Change the username and password as desired. Change the username and password as desired.
The username has to be the same as the database name.