X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=db%2F08to09_pg.sql;h=498a94e68a505450e7ecc62b73d052748bf96f44;hb=4853b1e2a029a844d0c92e6ad5f2a9e8c51b785c;hp=de228c117bb79598a5b9d19b84e76420ce0850db;hpb=11398190f0614ec73ecdfefc9d29cbe3f7703323;p=quix0rs-gnu-social.git diff --git a/db/08to09_pg.sql b/db/08to09_pg.sql index de228c117b..498a94e68a 100644 --- a/db/08to09_pg.sql +++ b/db/08to09_pg.sql @@ -111,4 +111,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) + +);