Index: openacs-4/packages/acs-mail-lite/sql/postgresql/acs-mail-lite-create.sql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-mail-lite/sql/postgresql/acs-mail-lite-create.sql,v diff -u -N -r1.4 -r1.5 --- openacs-4/packages/acs-mail-lite/sql/postgresql/acs-mail-lite-create.sql 29 Nov 2005 11:28:26 -0000 1.4 +++ openacs-4/packages/acs-mail-lite/sql/postgresql/acs-mail-lite-create.sql 1 Dec 2006 16:54:45 -0000 1.5 @@ -61,4 +61,34 @@ prefix varchar(100) NOT NULL, package_id int4 NOT NULL, impl_name varchar(100) NOT NULL -) ; \ No newline at end of file +) ; + + +CREATE TABLE acs_mail_lite_complex_queue ( + id serial PRIMARY KEY, + creation_date text, + locking_server text, + to_party_ids text, + cc_party_ids text, + bcc_party_ids text, + to_group_ids text, + cc_group_ids text, + bcc_group_ids text, + to_addr text, + cc_addr text, + bcc_addr text, + from_addr text, + subject text, + body text, + package_id integer, + files text, + file_ids text, + folder_ids text, + mime_type text, + object_id integer, + single_email_p boolean, + no_callback_p boolean, + extraheaders text, + alternative_part_p boolean, + use_sender_p boolean +);