add forward table

This commit is contained in:
Evan Prodromou 2009-12-08 14:56:11 -05:00
parent 3536f01258
commit add126bc6c
1 changed files with 11 additions and 0 deletions

View File

@ -585,3 +585,14 @@ create table login_token (
constraint primary key (user_id)
) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
create table forward (
profile_id integer not null comment 'profile who forwarded the notice' references profile (id),
notice_id integer not null comment 'notice they forwarded' references notice (id),
created datetime not null comment 'date this record was created',
constraint primary key (profile_id, notice_id)
) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;