plugins go now in the #plugins table

git-svn-id: http://piwigo.org/svn/trunk@1584 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
rvelices
2006-10-31 02:41:32 +00:00
parent 9c3e182268
commit a81bac0f15
10 changed files with 306 additions and 85 deletions
+12
View File
@@ -178,6 +178,18 @@ CREATE TABLE `phpwebgallery_images` (
KEY `images_i1` (`storage_category_id`)
) TYPE=MyISAM;
--
-- Table structure for table `phpwebgallery_plugins`
--
DROP TABLE IF EXISTS `phpwebgallery_plugins`;
CREATE TABLE `phpwebgallery_plugins` (
`id` varchar(64) binary NOT NULL default '',
`state` enum('inactive','active') NOT NULL default 'inactive',
`version` varchar(64) NOT NULL default '0',
PRIMARY KEY (`id`)
) TYPE=MyISAM;
--
-- Table structure for table `phpwebgallery_rate`
--