]> git.openstreetmap.org Git - rails.git/blobdiff - db/migrate.sql
readmes and move some sites
[rails.git] / db / migrate.sql
index 80d11eb9a0b7dab8641e9fa74d64f9c7e0814f94..dc81e5d0c315d357243161ddfad7ed56ac5ecfe1 100644 (file)
@@ -1,3 +1,5 @@
+/* this script when run on the current db migrates it to rails */
+
 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;
@@ -26,4 +28,16 @@ create index gpx_file_tags_gpxid_idx on gpx_file_tags(gpx_id);
 alter table gpx_file_tags add id int(20) auto_increment not null, add primary key(id);
 
 alter table users add preferences text;
-create index users_display_name_idx on users(display_name);
\ No newline at end of file
+create index users_display_name_idx on users(display_name);
+
+alter table users add data_public boolean default false;
+
+alter table gpx_files drop column tmpname;
+
+alter table users add column description text not null;
+create table diary_entries(id bigint not null auto_increment, user_id bigint not null, title varchar(255), body text, primary key(id));
+alter table diary_entries add created_at datetime;
+alter table diary_entries add updated_at datetime;
+
+
+