aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--[-rwxr-xr-x]INSTALL.txt5
1 files changed, 4 insertions, 1 deletions
diff --git a/INSTALL.txt b/INSTALL.txt
index 50b0f3e06..5a73c8930 100755..100644
--- a/INSTALL.txt
+++ b/INSTALL.txt
@@ -71,8 +71,11 @@ constraints whilst running the tests they also need to be a superuser.
CREATE USER <username> WITH CREATEUSER;
ALTER USER <username> WITH PASSWORD '<password>';
+ ALTER USER <username> WITH CREATEDB;
GRANT ALL PRIVILEGES ON DATABASE foi_development TO <username>;
- GRANT ALL PRIVILEGES ON DATABASE foi_test TO <username>;
+ GRANT ALL PRIVILEGES ON DATABASE foi_test TO <username>;
+ ALTER DATABASE foi_development OWNER TO <username>;
+ ALTER DATABASE foi_test OWNER TO <username>;
3. Deployment
-------------