]> git.openstreetmap.org Git - rails.git/commitdiff
Correct instructions for creating the database to ensure that the
authorTom Hughes <tom@compton.nu>
Thu, 4 Oct 2007 10:26:30 +0000 (10:26 +0000)
committerTom Hughes <tom@compton.nu>
Thu, 4 Oct 2007 10:26:30 +0000 (10:26 +0000)
default character set is specified correctly.

db/README

index d89a67bfb8bfb0603aac985e4dbd5295a3deff66..03e95fff3907442ecdbee9ae6688708fb6a768a5 100644 (file)
--- 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 <uid> -p create openstreetmap
+$ mysql -u <uid> -p
 
 (change <uid> with appropriate username of administrative user eg. root )
 
+> create database openstreetmap default character set utf8;
+> exit
+
 Creating user, password, and access rights
 ============================================