aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbersen <bersen.pajaziti@flossk.org>2010-12-21 05:10:33 -0800
committerbersen <bersen.pajaziti@flossk.org>2010-12-21 05:10:33 -0800
commit0c93b40fc09931d1835b50d459bd9763a254f667 (patch)
tree0c19f142fa68022317ab447c67cfc7527dc6dc84
parentfc68057f0778a9d3af6aa3bb183e0094c7aa6d58 (diff)
CREATEDB and OWNER privileges to <username>
-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
-------------