]> git.openstreetmap.org Git - rails.git/blob - db/migrate.sql
move sites around
[rails.git] / db / migrate.sql
1 /* this script when run on the current db migrates it to rails */
2
3 drop table meta_nodes;
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;
7
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;
12
13 drop table meta_ways;
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);
16
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 '';
19
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);
23
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);
29
30 alter table users add preferences text;
31 create index users_display_name_idx on users(display_name);
32
33 alter table users add data_public boolean default false;
34
35 alter table gpx_files drop column tmpname;
36
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;
41
42
43