2 -- This stores a list of events as they happen in the system.
3 -- @author Marcus Povey <marcus@dushka.co.uk>
5 CREATE TABLE `prefix_river` (
7 ident int(11) NOT NULL auto_increment COMMENT '-> record number',
9 userid int(11) NOT NULL COMMENT '-> ident of user triggering this event',
11 object_id int(11) NOT NULL COMMENT '-> ident of object this event was triggered on',
12 object_owner int(11) NOT NULL COMMENT '-> ident of objects owner',
13 object_type varchar(128) NOT NULL COMMENT '-> the type of event, publish etc',
14 access varchar(128) NOT NULL COMMENT '-> Access permissions on message, you should set this to the access permissions of the object inself',
16 string text NOT NULL COMMENT '-> String describing the event',
18 ts int(11) NOT NULL COMMENT '-> Time the event was triggered',