issue #2016 save search in history

This commit is contained in:
plegall
2023-10-02 12:28:01 +02:00
parent 727d9b4001
commit b5c9ca4819
7 changed files with 43 additions and 1 deletions

View File

@@ -0,0 +1,20 @@
<?php
// +-----------------------------------------------------------------------+
// | This file is part of Piwigo. |
// | |
// | For copyright and license information, please view the COPYING.txt |
// | file that was distributed with this source code. |
// +-----------------------------------------------------------------------+
if (!defined('PHPWG_ROOT_PATH'))
{
die('Hacking attempt!');
}
$upgrade_description = 'Create new column search_id in visits history table.';
pwg_query('ALTER TABLE `'.PREFIX_TABLE.'history` ADD COLUMN `search_id` int(10) unsigned default NULL AFTER `category_id`;');
echo "\n".$upgrade_description."\n";
?>

View File

@@ -146,6 +146,7 @@ CREATE TABLE `piwigo_history` (
`IP` varchar(15) NOT NULL default '',
`section` enum('categories','tags','search','list','favorites','most_visited','best_rated','recent_pics','recent_cats') default NULL,
`category_id` smallint(5) default NULL,
`search_id` int(10) unsigned default NULL,
`tag_ids` varchar(50) default NULL,
`image_id` mediumint(8) default NULL,
`image_type` enum('picture','high','other') default NULL,