X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/222d31e435f003ec59e84860d2fa5129449f69de..fb1467a94487cfdfcb19e4f88e05be7aa88096f0:/db/migrate.sql?ds=sidebyside diff --git a/db/migrate.sql b/db/migrate.sql index 2d55fb552..4638ba5a1 100644 --- a/db/migrate.sql +++ b/db/migrate.sql @@ -8,10 +8,16 @@ 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; -drop table meta_ways +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 ''; +alter table gpx_files add column data longblob; +alter table gpx_files add column mime_type varchar(255); +alter table gpx_files change private public boolean default 1 not null; +update gpx_files set public = !public; + +