group drop

This commit is contained in:
Mike Macgirvin 2010-08-11 01:48:43 -07:00
parent eb6b2677cb
commit f4e634ad52
8 changed files with 43 additions and 14 deletions

View file

@ -82,6 +82,7 @@ CREATE TABLE IF NOT EXISTS `contact` (
CREATE TABLE IF NOT EXISTS `group` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`uid` int(10) unsigned NOT NULL,
`deleted` tinyint(1) NOT NULL DEFAULT '0',
`name` char(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;