site_plugins
CREATE TABLE IF NOT EXISTS `{PREFIX}site_plugins` (
`id` int(10) NOT NULL auto_increment,
`name` varchar(50) NOT NULL default '',
`description` varchar(255) NOT NULL default 'Plugin',
`editor_type` integer NOT NULL DEFAULT '0' COMMENT '0-plain text,1-rich text,2-code editor',
`category` integer NOT NULL DEFAULT '0' COMMENT 'category id',
`cache_type` tinyint(1) NOT NULL default '0' COMMENT 'Cache option',
`plugincode` mediumtext,
`locked` tinyint(4) NOT NULL default '0',
`properties` text COMMENT 'Default Properties',
`disabled` tinyint NOT NULL DEFAULT '0' COMMENT 'Disables the plugin',
`moduleguid` varchar(32) NOT NULL default '' COMMENT 'GUID of module from which to import shared parameters',
PRIMARY KEY (`id`)
) ENGINE=MyISAM COMMENT='Contains the site plugins.';