issue #1953 forgot to update db structure for install

This commit is contained in:
plegall
2023-08-09 19:22:40 +02:00
parent b787dfd291
commit 3c5c62869a

View File

@@ -319,6 +319,10 @@ CREATE TABLE `piwigo_rate` (
DROP TABLE IF EXISTS `piwigo_search`;
CREATE TABLE `piwigo_search` (
`id` int(10) unsigned NOT NULL auto_increment,
`search_uuid` CHAR(23) DEFAULT NULL,
`created_on` DATETIME DEFAULT NULL,
`created_by` MEDIUMINT(8) UNSIGNED,
`forked_from` INT(10) UNSIGNED,
`last_seen` date default NULL,
`rules` text,
PRIMARY KEY (`id`)