1 /* this script when run on the current db migrates it to rails */
 
   4 alter table current_nodes modify tags text not null;
 
   5 alter table current_nodes modify id bigint(64) not null auto_increment;
 
   6 alter table nodes modify tags text not null;
 
   8 drop table meta_segments;
 
   9 alter table current_segments modify tags text not null;
 
  10 alter table current_segments modify id bigint(64) not null auto_increment;
 
  11 alter table segments modify tags text not null;
 
  14 alter table current_ways drop index current_ways_id_visible_idx;
 
  15 alter table current_ways modify id bigint(64) not null auto_increment, add primary key(id);
 
  17 alter table current_way_tags change k k varchar(255) not null default '';
 
  18 alter table current_way_tags change v v varchar(255) not null default '';
 
  20 alter table gpx_files change private public boolean default 1 not null;
 
  21 update gpx_files set public = !public;
 
  22 create index gpx_files_visible_public_idx on gpx_files(visible, public);
 
  24 alter table gpx_file_tags change sequence_id sequence_id int(11);
 
  25 alter table gpx_file_tags drop primary key;
 
  26 alter table gpx_file_tags drop column sequence_id;
 
  27 create index gpx_file_tags_gpxid_idx on gpx_file_tags(gpx_id);
 
  28 alter table gpx_file_tags add id int(20) auto_increment not null, add primary key(id);
 
  30 alter table users add preferences text;
 
  31 create index users_display_name_idx on users(display_name);
 
  33 alter table users add data_public boolean default false;
 
  35 alter table gpx_files drop column tmpname;
 
  37 alter table users add column description text not null;
 
  38 create table diary_entries(id bigint not null auto_increment, user_id bigint not null, title varchar(255), body text, primary key(id));
 
  39 alter table diary_entries add created_at datetime;
 
  40 alter table diary_entries add updated_at datetime;
 
  42 alter table users add column (home_lat double default 0);
 
  43 alter table users add column (home_lon double default 0);
 
  44 alter table users add column home_zoom int(2) default 3);
 
  45 alter table users add column within_lon double default 2;
 
  46 alter table users add column within_lat double default 2;
 
  48 create table messages (id bigint not null auto_increment, user_id bigint(20) not null,  from_user_id bigint(20) not null, from_display_name varchar(255) default "", title varchar(255), body text, sent_on datetime, message_read boolean default 0, primary key(id));
 
  49 create index from_name_idx on messages(from_display_name);
 
  51 create table friends (id bigint not null auto_increment, user_id bigint(20) not null, friend_user_id(20) not null, primary key(id));
 
  52 create index user_id_idx on friends(friend_user_id);