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