1 you want to do something like this
4 # mysqladmin create openstreetmap
6 > grant all privileges on openstreetmap.* to 'openstreetmap'@'localhost' identified by 'openstreetmap';
9 $ mysql openstreetmap -u openstreetmap -p < db/create_database.sql
11 (the last line above gets you to what the server has right now)
13 $ mysql openstreetmap -u openstreetmap -p < db/migrate.sql
15 (this line gets you to where its going to be when we go live with rails)