mirror of
https://github.com/php/web-pecl.git
synced 2026-03-24 07:12:15 +01:00
21 lines
492 B
SQL
21 lines
492 B
SQL
--
|
|
-- Table structure for table `categories`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `categories`;
|
|
|
|
CREATE TABLE `categories` (
|
|
`id` int(11) NOT NULL default '0',
|
|
`parent` int(11) default NULL,
|
|
`name` varchar(80) NOT NULL default '',
|
|
`summary` text,
|
|
`description` text,
|
|
`npackages` int(11) default '0',
|
|
`pkg_left` int(11) default NULL,
|
|
`pkg_right` int(11) default NULL,
|
|
`cat_left` int(11) default NULL,
|
|
`cat_right` int(11) default NULL,
|
|
PRIMARY KEY (`id`),
|
|
UNIQUE INDEX (`name`)
|
|
);
|