diff -r 5e7a0fedabdf -r 877f952ae2bd web/lib/Zend/Queue/Adapter/Db/postgresql.sql --- a/web/lib/Zend/Queue/Adapter/Db/postgresql.sql Thu Mar 21 17:31:31 2013 +0100 +++ b/web/lib/Zend/Queue/Adapter/Db/postgresql.sql Thu Mar 21 19:50:53 2013 +0100 @@ -38,7 +38,7 @@ handle character(32), body character varying(8192) NOT NULL, md5 character(32) NOT NULL, - timeout real, + timeout double precision, created integer, CONSTRAINT message_pk PRIMARY KEY (message_id), CONSTRAINT message_ibfk_1 FOREIGN KEY (queue_id) @@ -46,4 +46,4 @@ ON UPDATE CASCADE ON DELETE CASCADE ) WITH (OIDS=FALSE); -ALTER TABLE message OWNER TO queue; \ No newline at end of file +ALTER TABLE message OWNER TO queue;