Index: INSTALL.pgsql.txt
===================================================================
RCS file: /cvs/drupal/drupal/INSTALL.pgsql.txt,v
retrieving revision 1.7
diff -u -p -r1.7 INSTALL.pgsql.txt
--- INSTALL.pgsql.txt	26 Nov 2007 16:36:42 -0000	1.7
+++ INSTALL.pgsql.txt	9 Jul 2009 04:56:15 -0000
@@ -12,7 +12,7 @@ Note that the database must be created w
    following command creates a new user named "username" and asks for a
    password for that user:
 
-     createuser --pwprompt --encrypted --no-adduser --no-createdb username
+     create user username login encrypted password 'putyourpasswordhere' nocreateuser nocreatedb;
 
    If everything works correctly, you'll see a "CREATE USER" notice.
 
@@ -23,6 +23,6 @@ Note that the database must be created w
    The following command creates a new database named "databasename", which is
    owned by previously created "username":
 
-     createdb --encoding=UNICODE --owner=username databasename
+     create database databasename encoding 'UTF8' owner username;
 
    If everything works correctly, you'll see a "CREATE DATABASE" notice.
