X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/fb1467a94487cfdfcb19e4f88e05be7aa88096f0..a61e2ed69047cc4756d4ba11617ea1b2c2ff98cb:/db/migrate.sql diff --git a/db/migrate.sql b/db/migrate.sql index 4638ba5a1..65f0326da 100644 --- a/db/migrate.sql +++ b/db/migrate.sql @@ -1,3 +1,5 @@ +/* this script when run on the current db migrates it to rails */ + drop table meta_nodes; alter table current_nodes modify tags text not null; alter table current_nodes modify id bigint(64) not null auto_increment; @@ -15,9 +17,18 @@ alter table current_ways modify id bigint(64) not null auto_increment, add prima alter table current_way_tags change k k varchar(255) not null default ''; alter table current_way_tags change v v varchar(255) not null default ''; -alter table gpx_files add column data longblob; -alter table gpx_files add column mime_type varchar(255); alter table gpx_files change private public boolean default 1 not null; update gpx_files set public = !public; +create index gpx_files_visible_public_idx on gpx_files(visible, public); + +alter table gpx_file_tags change sequence_id sequence_id int(11); +alter table gpx_file_tags drop primary key; +alter table gpx_file_tags drop column sequence_id; +create index gpx_file_tags_gpxid_idx on gpx_file_tags(gpx_id); +alter table gpx_file_tags add id int(20) auto_increment not null, add primary key(id); + +alter table users add preferences text; +create index users_display_name_idx on users(display_name); +alter table users add data_public boolean default false;