From: Brenda Wallace Date: Thu, 27 May 2010 03:06:42 +0000 (+0000) Subject: added the inbox table to postgres upgrade script X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=af4fd327429fcc01769b33ece458a77a37b2463f;p=quix0rs-gnu-social.git added the inbox table to postgres upgrade script --- diff --git a/db/08to09_pg.sql b/db/08to09_pg.sql index cc1edc5ec0..c2fabf63ba 100644 --- a/db/08to09_pg.sql +++ b/db/08to09_pg.sql @@ -110,4 +110,12 @@ create table user_location_prefs ( primary key (user_id) ); +create table inbox ( + + user_id integer not null /* comment 'user receiving the notice' */ references "user" (id), + notice_ids bytea /* comment 'packed list of notice ids' */, + + primary key (user_id) + +);