diff options
author | plegall <plg@piwigo.org> | 2007-02-20 23:40:02 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2007-02-20 23:40:02 +0000 |
commit | 3b46143435b528684d52772039540273bbcea52b (patch) | |
tree | 69c0319a2dc150ba6a4aabd9178f3eb4c47b4e10 /install/phpwebgallery_structure.sql | |
parent | ed97ed33d37db4f1196c48d51c1c7f8cbe8cb9ce (diff) |
New: non picture files are now logged in history when downloaded. The
history filter was redesigned: #history.is_high replaced by
#history.image_type = high. The filter is simpler.
git-svn-id: http://piwigo.org/svn/trunk@1844 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'install/phpwebgallery_structure.sql')
-rw-r--r-- | install/phpwebgallery_structure.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install/phpwebgallery_structure.sql b/install/phpwebgallery_structure.sql index 0b39c9018..bc229dc6a 100644 --- a/install/phpwebgallery_structure.sql +++ b/install/phpwebgallery_structure.sql @@ -126,7 +126,7 @@ CREATE TABLE `phpwebgallery_history` ( `tag_ids` varchar(50) default NULL, `image_id` mediumint(8) default NULL, `summarized` enum('true','false') default 'false', - `is_high` enum('true','false') default NULL, + `image_type` enum('picture','high','other') default NULL, PRIMARY KEY (`id`), KEY `history_i1` (`summarized`) ) TYPE=MyISAM; |