X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/ece8999dcdfa84f146aa7ad39071b48260b0d7fe..e5f292cf21a5fa72733080a294484e0e4208e0e7:/db/migrate.sql?ds=sidebyside diff --git a/db/migrate.sql b/db/migrate.sql index 0bf3c3a90..92ae6b171 100644 --- a/db/migrate.sql +++ b/db/migrate.sql @@ -18,3 +18,9 @@ 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; +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); +