]> git.openstreetmap.org Git - rails.git/blob - db/migrate.sql
92ae6b1711a23f393e48940fd0d7e1948c886601
[rails.git] / db / migrate.sql
1 drop table meta_nodes;
2 alter table current_nodes modify tags text not null;
3 alter table current_nodes modify id bigint(64) not null auto_increment;
4 alter table nodes modify tags text not null;
5
6 drop table meta_segments;
7 alter table current_segments modify tags text not null;
8 alter table current_segments modify id bigint(64) not null auto_increment;
9 alter table segments modify tags text not null;
10
11 drop table meta_ways;
12 alter table current_ways drop index current_ways_id_visible_idx;
13 alter table current_ways modify id bigint(64) not null auto_increment, add primary key(id);
14
15 alter table current_way_tags change k k varchar(255) not null default '';
16 alter table current_way_tags change v v varchar(255) not null default '';
17
18 alter table gpx_files change private public boolean default 1 not null;
19 update gpx_files set public = !public;
20
21 alter table gpx_file_tags change sequence_id sequence_id int(11);
22 alter table gpx_file_tags drop primary key;
23 alter table gpx_file_tags drop column sequence_id;
24 create index gpx_file_tags_gpxid_idx on gpx_file_tags(gpx_id);
25 alter table gpx_file_tags add id int(20) auto_increment not null, add primary key(id);
26