arghhhhhhhhh untested rails code and SQL fixed

This commit is contained in:
Steve Coast 2007-05-06 10:20:40 +00:00
parent 89e976c6e5
commit 48183e2d53
2 changed files with 4 additions and 4 deletions

View file

@ -45,8 +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, from_display_name varchar(255) default "", 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 "", to_user_id bigint(20) not null, 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 table friends (id bigint not null auto_increment, user_id bigint(20) not null, friend_user_id bigint(20) not null, primary key(id));
create index user_id_idx on friends(friend_user_id);