diff options
author | rvelices <rv-github@modusoptimus.com> | 2006-10-31 02:41:32 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2006-10-31 02:41:32 +0000 |
commit | a81bac0f15907d81da4e9fea978840b9a10210c8 (patch) | |
tree | 7ad7312cea1e447a698e627093614174f5a7552e /install/phpwebgallery_structure.sql | |
parent | 9c3e182268ed2bc5df5f31cf4045b217f7ad8791 (diff) |
plugins go now in the #plugins table
git-svn-id: http://piwigo.org/svn/trunk@1584 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'install/phpwebgallery_structure.sql')
-rw-r--r-- | install/phpwebgallery_structure.sql | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/install/phpwebgallery_structure.sql b/install/phpwebgallery_structure.sql index 6e3fbd8f9..4a764117d 100644 --- a/install/phpwebgallery_structure.sql +++ b/install/phpwebgallery_structure.sql @@ -179,6 +179,18 @@ CREATE TABLE `phpwebgallery_images` ( ) 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` -- |