Simple status box for the sidebar.
[elgg_plugins.git] / logging / table.sql
blob221f768a7355c041d96505fa021a7854d4dbf4c5
1 CREATE TABLE `elgglogging` (\r
2   `ident` int(11) NOT NULL auto_increment,\r
3   `timestamp` int(11) NOT NULL,\r
4   `object_type` varchar(128)  NOT NULL,\r
5   `object_id` int(11) NOT NULL,\r
6   `user_id` int(11) NOT NULL,\r
7   `event_type` varchar(128)  NOT NULL,\r
8   `old_access` varchar(128)  NOT NULL,\r
9   `new_access` varchar(128)  NOT NULL,\r
10   PRIMARY KEY  (`ident`),\r
11   KEY `timestamp` (`timestamp`,`object_type`)\r
12 ) ENGINE=MyISAM  ;\r