Changeset 1121 for trunk/install


Ignore:
Timestamp:
Apr 5, 2006, 12:29:35 AM (18 years ago)
Author:
plg
Message:

feature deleted: code for categories link was too complicated for such a
simple fature. Replaced by static association. Links are not persistent
anymore.

modification removed: #image_category.is_storage replaced by
#images.storage_category_id as in branche 1.5..

Location:
trunk/install
Files:
2 added
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/install/phpwebgallery_structure.sql

    r1119 r1121  
    4343
    4444--
    45 -- Table structure for table `phpwebgallery_categories_link`
    46 --
    47 
    48 DROP TABLE IF EXISTS `phpwebgallery_categories_link`;
    49 CREATE TABLE `phpwebgallery_categories_link` (
    50   `source` smallint(5) unsigned NOT NULL default '0',
    51   `destination` smallint(5) unsigned NOT NULL default '0',
    52   PRIMARY KEY  (`source`,`destination`)
    53 ) TYPE=MyISAM;
    54 
    55 --
    5645-- Table structure for table `phpwebgallery_comments`
    5746--
     
    139128  `image_id` mediumint(8) unsigned NOT NULL default '0',
    140129  `category_id` smallint(5) unsigned NOT NULL default '0',
    141   `is_storage` enum('true','false') default 'false',
    142130  PRIMARY KEY  (`image_id`,`category_id`),
    143131  KEY `image_category_i1` (`image_id`),
     
    179167  `has_high` enum('true') default NULL,
    180168  `path` varchar(255) NOT NULL default '',
     169  `storage_category_id` smallint(5) unsigned default NULL,
    181170  PRIMARY KEY  (`id`),
    182171  KEY `images_i2` (`date_available`),
Note: See TracChangeset for help on using the changeset viewer.