]> git.openstreetmap.org Git - rails.git/blobdiff - db/migrate.sql
API 0.4 Updates - work on traces pages + pagination, edit tab, some API testing
[rails.git] / db / migrate.sql
index 2d55fb552fe1b44540228a887f7d0733781194f2..80d11eb9a0b7dab8641e9fa74d64f9c7e0814f94 100644 (file)
@@ -8,10 +8,22 @@ alter table current_segments modify tags text not null;
 alter table current_segments modify id bigint(64) not null auto_increment;
 alter table segments modify tags text not null;
 
-drop table meta_ways
+drop table meta_ways;
 alter table current_ways drop index current_ways_id_visible_idx;
 alter table current_ways modify id bigint(64) not null auto_increment, add primary key(id);
 
 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 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);
\ No newline at end of file