]> git.openstreetmap.org Git - rails.git/blobdiff - db/migrate.sql
Potlatch whichways and getway. These aren't really Rails, they're just SQL grafted...
[rails.git] / db / migrate.sql
index 302ad2a6ccfef0b5cb8cbd1184b6e0ab05e1a16d..35c5a7659db1237f48e77b1555f4f7cdf3214f43 100644 (file)
@@ -45,7 +45,8 @@ alter table users add column home_zoom int(2) default 3);
 alter table users add column within_lon double default 2;
 alter table users add column within_lat double default 2;
 
-create table messages (id bigint not null auto_increment, user_id bigint(20) not null,  from_user_id bigint(20) not null, title varchar(255), body text, sent_on datetime, message_read boolean default 0, primary key(id));
+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));
+create index from_name_idx on messages(from_display_name);
 
 create table friends (id bigint not null auto_increment, user_id bigint(20) not null, friend_user_id(20) not null, primary key(id));
 create index user_id_idx on friends(friend_user_id);