...
The table actionlog contains all executed action Actions in backend.
Every time a user in backend clicks on a link, there is another entry added to this table. The data is used for the action log display.
Actionlog is a systemwide ressources.
Table structure
Field name | Field specification | Comment / Explanation |
---|---|---|
idlog | int(11) | Primary key (auto increment) |
user_id | varchar(32) | Foreign key to table user |
idclient | int(11) | Foreign key to table client |
idlang | int(11) | Foreign key to table lang |
idaction | int(11) | Foreign key to table actions |
idcatart | int(11) | Foreign key to table cat_art |
logtimestamp | datetime | Timestamp of the logged action |
...