X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/a6f61bd18aebe24d7488447b18d49158b15a71fa..613e88c4a8728c2f1ab8a2fb9338762b947eac6a:/db/migrate.sql diff --git a/db/migrate.sql b/db/migrate.sql index 83840d5cf..abbc0ae24 100644 --- a/db/migrate.sql +++ b/db/migrate.sql @@ -1,7 +1,11 @@ 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; -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;