]> git.openstreetmap.org Git - rails.git/blob - db/README
add the model
[rails.git] / db / README
1 you want to do something like this
2
3 $ su
4 # mysqladmin create openstreetmap
5 # mysql
6 > grant all privileges on openstreetmap.* to 'openstreetmap'@'localhost' identified by 'openstreetmap';
7 > exit
8 # exit
9 $ mysql openstreetmap -u openstreetmap -p < db/create_database.sql
10
11 (the last line above gets you to what the server has right now)
12
13 $ mysql openstreetmap -u openstreetmap -p < db/migrate.sql
14
15 (this line gets you to where its going to be when we go live with rails)