Add a migration to upgrade gps_points for quad tile support.

This commit is contained in:
Tom Hughes 2007-09-12 17:59:48 +00:00
parent b1a0e5ae8b
commit ebef7b8009
2 changed files with 39 additions and 1 deletions

View file

@ -22,10 +22,33 @@ $ mysql -u <uid> -p
> flush privileges;
> exit
Creating functions
====================
Run this command in the db/functions directory:
$ make
Make sure the db/functions directory is on the MySQL server's library
path and restart the MySQL server. On linux the easiest way to do this
is to create /etc/ld.so.conf.d/osm.conf and place the path to the
db/functions directory in it and then run the following command as root:
$ ldconfig
Now create the functions as follows:
$ mysql -u <uid> -p openstreetmap
(change <uid> with appropriate username of administrative user eg. root )
> create function tile_for_point returns integer soname 'libquadtile.so';
> exit
Creating database skeleton tables
===================================
Run this command from the root of your rails direcotry:
Run this command from the root of your rails directory:
$ rake db:migrate

View file

@ -0,0 +1,15 @@
class TileTracepoints < ActiveRecord::Migration
def self.up
add_column "gps_points", "tile", :integer, :null => false, :options => "UNSIGNED"
add_index "gps_points", ["tile"], :name => "points_tile_idx"
remove_index "gps_points", :name => "points_idx"
Tracepoint.update_all("tile = tile_for_point(latitude, longitude)")
end
def self.down
add_index "gps_points", ["latitude", "longitude"], :name => "points_idx"
remove_index "gps_points", :name => "points_tile_idx"
remove_column "gps_points", "tile"
end
end