From: Tom Hughes Date: Thu, 4 Oct 2007 10:26:30 +0000 (+0000) Subject: Correct instructions for creating the database to ensure that the X-Git-Tag: live~8078 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/05ce43138f0cf331c8d91f5df38bc8f6aa750c02 Correct instructions for creating the database to ensure that the default character set is specified correctly. --- diff --git a/db/README b/db/README index d89a67bfb..03e95fff3 100644 --- a/db/README +++ b/db/README @@ -7,10 +7,13 @@ openstreetmap You may create it with your preferable client or run next (linux) command: -$ mysqladmin -u -p create openstreetmap +$ mysql -u -p (change with appropriate username of administrative user eg. root ) +> create database openstreetmap default character set utf8; +> exit + Creating user, password, and access rights ============================================