added the inbox table to postgres upgrade script

This commit is contained in:
Brenda Wallace 2010-05-27 03:06:42 +00:00
parent eed0facc87
commit af4fd32742
1 changed files with 8 additions and 0 deletions

View File

@ -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)
);