mirror of
https://github.com/php/web-pecl.git
synced 2026-03-24 07:12:15 +01:00
12 lines
242 B
SQL
12 lines
242 B
SQL
--
|
|
-- Table structure for table `cvs_groups`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `cvs_groups`;
|
|
|
|
CREATE TABLE `cvs_groups` (
|
|
`groupname` varchar(20) NOT NULL default '',
|
|
`description` varchar(250) NOT NULL default '',
|
|
UNIQUE INDEX (`groupname`)
|
|
);
|