X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/c8f9387420233bd7e845cb205c3b68ede1f90024..1a6765f1a23793e986504445025ec3fd7bd78171:/db/migrate.sql diff --git a/db/migrate.sql b/db/migrate.sql index 83840d5cf..b6bc48135 100644 --- a/db/migrate.sql +++ b/db/migrate.sql @@ -1,7 +1,17 @@ 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; +alter table nodes modify tags text not null; +drop table meta_segments; +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; -alter table nodes modify tags text not null; +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 '';