diff options
author | z0rglub <z0rglub@piwigo.org> | 2004-05-28 21:56:07 +0000 |
---|---|---|
committer | z0rglub <z0rglub@piwigo.org> | 2004-05-28 21:56:07 +0000 |
commit | 5643049f239f6472d6019a2f3bce029ed1ef825d (patch) | |
tree | 9a74e101dd6ab7edb925959583f1de57211b4ffb /install/phpwebgallery_structure.sql | |
parent | 7e465041bfdf14cbbb684bf11f597e3bc8e78980 (diff) |
table user_category dropped
git-svn-id: http://piwigo.org/svn/trunk@423 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'install/phpwebgallery_structure.sql')
-rw-r--r-- | install/phpwebgallery_structure.sql | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/install/phpwebgallery_structure.sql b/install/phpwebgallery_structure.sql index a6d28e7be..603949488 100644 --- a/install/phpwebgallery_structure.sql +++ b/install/phpwebgallery_structure.sql @@ -176,19 +176,6 @@ CREATE TABLE phpwebgallery_user_access ( ) TYPE=MyISAM; -- --- Table structure for table 'phpwebgallery_user_category' --- - -DROP TABLE IF EXISTS phpwebgallery_user_category; -CREATE TABLE phpwebgallery_user_category ( - user_id smallint(5) unsigned NOT NULL default '0', - category_id smallint(5) unsigned NOT NULL default '0', - date_last date default NULL, - nb_sub_categories smallint(5) unsigned NOT NULL default '0', - PRIMARY KEY (user_id,category_id) -) TYPE=MyISAM; - --- -- Table structure for table 'phpwebgallery_user_group' -- |