summaryrefslogtreecommitdiff
path: root/INSTALL
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2009-02-16 09:54:53 +0000
committeralecpl <alec@alec.pl>2009-02-16 09:54:53 +0000
commitad56004cd69afbbbbd7eff3ec630256b2d098132 (patch)
tree0b4cc75c3eb59b6767eb9f77a6fb4f95071ddfce /INSTALL
parent480a7adc29b36df4e2fd01c3a58d522472a97577 (diff)
- added info to create unicode database (#1485687)
Diffstat (limited to 'INSTALL')
-rw-r--r--INSTALL4
1 files changed, 2 insertions, 2 deletions
diff --git a/INSTALL b/INSTALL
index 8d57eb2a1..5f2f3dd60 100644
--- a/INSTALL
+++ b/INSTALL
@@ -53,7 +53,7 @@ importing the table layout and granting the proper permissions to the
roundcube user. Here is an example of that procedure:
# mysql
-> CREATE DATABASE roundcubemail;
+> CREATE DATABASE roundcubemail /*!40101 CHARACTER SET utf8 COLLATE utf8_general_ci */;
> GRANT ALL PRIVILEGES ON roundcubemail.* TO roundcube@localhost
IDENTIFIED BY 'password';
> quit
@@ -88,7 +88,7 @@ simple steps, which have to be done as the postgres system user (or
which ever is the database superuser):
$ createuser roundcube
-$ createdb -O roundcube roundcubemail
+$ createdb -O roundcube -E UNICODE roundcubemail
$ psql roundcubemail
roundcubemail =# ALTER USER roundcube WITH PASSWORD 'the_new_password';