db changes for feature 2836 display # of comments/tags in menubar and feature 2557 recent photos should never be empty

git-svn-id: http://piwigo.org/svn/trunk@21801 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
rvelices
2013-03-23 10:02:04 +00:00
parent c523eec163
commit 19d831bfe1
3 changed files with 63 additions and 6 deletions
+4 -1
View File
@@ -352,6 +352,9 @@ CREATE TABLE `piwigo_user_cache` (
`cache_update_time` integer unsigned NOT NULL default 0,
`forbidden_categories` mediumtext,
`nb_total_images` mediumint(8) unsigned default NULL,
`last_photo_date` datetime DEFAULT NULL,
`nb_available_tags` INT(5) DEFAULT NULL,
`nb_available_comments` INT(5) DEFAULT NULL
`image_access_type` enum('NOT IN','IN') NOT NULL default 'NOT IN',
`image_access_list` mediumtext default NULL,
PRIMARY KEY (`user_id`)
@@ -416,7 +419,7 @@ CREATE TABLE `piwigo_user_infos` (
`enabled_high` enum('true','false') NOT NULL default 'true',
`level` tinyint unsigned NOT NULL default '0',
`activation_key` char(20) default NULL,
UNIQUE KEY `user_infos_ui1` (`user_id`)
PRIMARY KEY (`user_id`)
) ENGINE=MyISAM;
--