Lines 2524-2530
CREATE TABLE `accountoffsets` (
Link Here
|
2524 |
DROP TABLE IF EXISTS `action_logs`; |
2524 |
DROP TABLE IF EXISTS `action_logs`; |
2525 |
CREATE TABLE `action_logs` ( -- logs of actions taken in Koha (requires that the logs be turned on) |
2525 |
CREATE TABLE `action_logs` ( -- logs of actions taken in Koha (requires that the logs be turned on) |
2526 |
`action_id` int(11) NOT NULL auto_increment, -- unique identifier for each action |
2526 |
`action_id` int(11) NOT NULL auto_increment, -- unique identifier for each action |
2527 |
`timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- the date and time the action took place |
2527 |
`timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP, -- the date and time the action took place |
2528 |
`user` int(11) NOT NULL default 0, -- the staff member who performed the action (borrowers.borrowernumber) |
2528 |
`user` int(11) NOT NULL default 0, -- the staff member who performed the action (borrowers.borrowernumber) |
2529 |
`module` text, -- the module this action was taken against |
2529 |
`module` text, -- the module this action was taken against |
2530 |
`action` text, -- the action (includes things like DELETED, ADDED, MODIFY, etc) |
2530 |
`action` text, -- the action (includes things like DELETED, ADDED, MODIFY, etc) |