summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2012-06-27 14:05:52 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2012-06-27 14:05:52 +0200
commitc254f2c640ac714a6c98e03b8d57a4d418f8e492 (patch)
treee5db0e6fa49ff9b33c0478e5ae2926605ea3eb50
parente65fe5eb90a90edc2ea25f892b7d384713216c8d (diff)
Extend database setup instructions with some useful information
-rw-r--r--db/oracle/setup1
-rw-r--r--db/pgsql/setup4
2 files changed, 5 insertions, 0 deletions
diff --git a/db/oracle/setup b/db/oracle/setup
index 0b49d22..5231468 100644
--- a/db/oracle/setup
+++ b/db/oracle/setup
@@ -13,6 +13,7 @@ CREATE TABLE,
CREATE SEQUENCE,
CREATE TRIGGER,
CREATE SESSION,
+CREATE TYPE,
UNLIMITED TABLESPACE TO odb_test;
=======
diff --git a/db/pgsql/setup b/db/pgsql/setup
index f1e2699..e091f22 100644
--- a/db/pgsql/setup
+++ b/db/pgsql/setup
@@ -13,3 +13,7 @@ host odb_test odb_test 192.168.0.0/24 trust
create user odb_test;
create database odb_test;
grant all privileges on database odb_test to odb_test;
+
+* If need to add hstore support:
+
+ psql odb_test -f /usr/share/postgresql/8.4/contrib/hstore.sql