mirror of
https://github.com/php/web-pecl.git
synced 2026-03-24 15:22:16 +01:00
14 lines
361 B
SQL
14 lines
361 B
SQL
--
|
|
-- Table structure for table `maintains`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `maintains`;
|
|
|
|
CREATE TABLE `maintains` (
|
|
`handle` varchar(20) NOT NULL default '',
|
|
`package` int(11) NOT NULL default '0',
|
|
`role` enum('lead','developer','contributor','helper') NOT NULL default 'lead',
|
|
`active` tinyint(4) NOT NULL default '1',
|
|
PRIMARY KEY (`handle`,`package`)
|
|
);
|