Bug 16829: Add 'interface' column to action_logs
authorTomas Cohen Arazi <tomascohen@theke.io>
Fri, 1 Jul 2016 20:48:37 +0000 (17:48 -0300)
committerKyle M Hall <kyle@bywatersolutions.com>
Wed, 17 Aug 2016 18:01:48 +0000 (18:01 +0000)
This patch introduces a new column for the action_logs table. It is
called 'interface' and it is intended to store the interface in which
the action was performed.

Sponsored-by: NEKLS
Signed-off-by: Nicole C Engard <nengard@bywatersolutions.com>
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
installer/data/mysql/atomicupdate/bug_16829_action_logs_interface.sql [new file with mode: 0644]
installer/data/mysql/kohastructure.sql

diff --git a/installer/data/mysql/atomicupdate/bug_16829_action_logs_interface.sql b/installer/data/mysql/atomicupdate/bug_16829_action_logs_interface.sql
new file mode 100644 (file)
index 0000000..9591824
--- /dev/null
@@ -0,0 +1,14 @@
+ALTER TABLE `action_logs` ADD COLUMN `interface` VARCHAR(30) DEFAULT NULL AFTER `info`;
+ALTER TABLE `action_logs` ADD KEY `interface` (`interface`);
+
+-- $DBversion = "16.06.00.XXX";
+-- if ( CheckVersion($DBversion) ) {
+--     $dbh->do(q{
+--         ALTER TABLE `action_logs` ADD COLUMN `interface` VARCHAR(30) DEFAULT NULL AFTER `info`;
+--     });
+--     $dbh->do({
+--         ALTER TABLE `action_logs` ADD KEY `interface` (`interface`);
+--     });
+--     print "Upgrade to $DBversion done (Bug 16829: action_logs should have an 'interface' column)\n";
+--     SetVersion($DBversion);
+-- }
index 76aa462..a05ef06 100644 (file)
@@ -2715,13 +2715,15 @@ CREATE TABLE `action_logs` ( -- logs of actions taken in Koha (requires that the
   `action` text, -- the action (includes things like DELETED, ADDED, MODIFY, etc)
   `object` int(11) default NULL, -- the object that the action was taken against (could be a borrowernumber, itemnumber, etc)
   `info` text, -- information about the action (usually includes SQL statement)
+  `interface` VARCHAR(30) DEFAULT NULL, -- the context this action was taken in
   PRIMARY KEY (`action_id`),
   KEY `timestamp_idx` (`timestamp`),
   KEY `user_idx` (`user`),
   KEY `module_idx` (`module`(255)),
   KEY `action_idx` (`action`(255)),
   KEY `object_idx` (`object`),
-  KEY `info_idx` (`info`(255))
+  KEY `info_idx` (`info`(255)),
+  KEY `interface` (`interface`)
 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
 
 --