This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
Incam_SGD/sql/mysql/upgrade/2.99.6/plugin-registration.sql

17 lines
439 B
MySQL
Raw Normal View History

CREATE TABLE `plugins` (
`id` int(11) NOT NULL default '0',
`namespace` varchar(255) NOT NULL default '',
`path` varchar(255) NOT NULL default '',
`version` int(11) NOT NULL default '0',
`disabled` tinyint(1) NOT NULL default '0',
`data` text,
PRIMARY KEY (`id`),
KEY `name` (`namespace`)
) TYPE=InnoDB;
CREATE TABLE `zseq_plugins` (
`id` int(10) unsigned NOT NULL auto_increment,
PRIMARY KEY (`id`)
) TYPE=MyISAM;