mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-05-15 05:46:01 +02:00
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:
@@ -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`
|
||||
--
|
||||
|
||||
Reference in New Issue
Block a user