From 026c71179153567583f94459dadd9fdee0b30070 Mon Sep 17 00:00:00 2001 From: miker Date: Mon, 7 Mar 2011 20:25:54 +0000 Subject: [PATCH] We now require PG 9.0+, say as much in the README ... everywhere git-svn-id: svn://svn.open-ils.org/ILS/trunk@19628 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- README | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README b/README index 17a630a..46e4918 100644 --- a/README +++ b/README @@ -121,17 +121,17 @@ create the database and add the appropriate languages and extensions to support Evergreen. Issue the following commands as the "postgres" user to set up a database called "evergreen". Note that the location of the PostgreSQL "contrib" packages may vary depending on your distribution. In the following -commands, we assume that you are working with PostgreSQL 8.4 on a Debian-based +commands, we assume that you are working with PostgreSQL 9.0 on a Debian-based system: createdb --template template0 --encoding UNICODE evergreen createlang plperl evergreen createlang plperlu evergreen createlang plpgsql evergreen -psql -f /usr/share/postgresql/8.4/contrib/tablefunc.sql -d evergreen -psql -f /usr/share/postgresql/8.4/contrib/tsearch2.sql -d evergreen -psql -f /usr/share/postgresql/8.4/contrib/pgxml.sql -d evergreen -psql -f /usr/share/postgresql/8.4/contrib/hstore.sql -d evergreen +psql -f /usr/share/postgresql/9.0/contrib/tablefunc.sql -d evergreen +psql -f /usr/share/postgresql/9.0/contrib/tsearch2.sql -d evergreen +psql -f /usr/share/postgresql/9.0/contrib/pgxml.sql -d evergreen +psql -f /usr/share/postgresql/9.0/contrib/hstore.sql -d evergreen Once you have created the Evergreen database, you need to create a PostgreSQL user to access the database. Issue the following command as the "postgres" -- 1.7.2.5