]> git.openstreetmap.org Git - rails.git/blob - db/migrate.sql
abbc0ae244e240533900444bbdce3f2b6b504ee5
[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
7 drop table meta_segments;
8 alter table current_segments modify tags text not null;
9 alter table current_segments modify id bigint(64) not null auto_increment;
10 alter table segments modify tags text not null;
11