Changeset 1624 for trunk/install


Ignore:
Timestamp:
Dec 2, 2006, 12:31:19 AM (17 years ago)
Author:
rub
Message:

Resolved Issue ID 0000299:

o Add (new) icon of parent category with children categories including new images
o Improved display text for images count
o Improved (a little) mass_* functions

More explications on the forum.
You must call directly upgrade_feep.php (http://127.0.0.1/BSF/upgrade_feed.php for example)

Location:
trunk/install
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/install/phpwebgallery_structure.sql

    r1622 r1624  
    291291
    292292--
     293-- Table structure for table `phpwebgallery_user_cache_categories`
     294--
     295
     296DROP TABLE IF EXISTS `phpwebgallery_user_cache_categories`;
     297CREATE TABLE `phpwebgallery_user_cache_categories` (
     298  `user_id` smallint(5) NOT NULL default '0',
     299  `cat_id` smallint(5) unsigned NOT NULL default '0',
     300  `is_child_date_last` enum('true','false') NOT NULL default 'false',
     301  `max_date_last` datetime default NULL,
     302  `count_images` mediumint(8) unsigned default 0,
     303  `count_categories` mediumint(8) unsigned default 0,
     304  PRIMARY KEY  (`user_id`, `cat_id`)
     305) TYPE=MyISAM;
     306
     307--
    293308-- Table structure for table `phpwebgallery_user_feed`
    294309--
Note: See TracChangeset for help on using the changeset viewer.