Files
archived-web-pecl/sql/maintains.sql
2011-10-27 14:41:44 +02:00

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`)
);