From: Evan Prodromou Date: Wed, 30 Dec 2009 05:54:08 +0000 (-0800) Subject: add an inbox blob table X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=2ecdeb3dddc1c47ba6fd25536cacca88ce659b34;p=quix0rs-gnu-social.git add an inbox blob table --- diff --git a/db/statusnet.sql b/db/statusnet.sql index 94b03df639..cb33ccf33e 100644 --- a/db/statusnet.sql +++ b/db/statusnet.sql @@ -596,3 +596,11 @@ create table user_location_prefs ( constraint primary key (user_id) ) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; +create table inbox ( + + user_id integer not null comment 'user receiving the notice' references user (id), + notice_ids blob comment 'packed list of notice ids', + + constraint primary key (user_id) + +) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;