message_group.sql 468 B

1234567891011
  1. DROP TABLE IF EXISTS `phpcms_message_group`;
  2. CREATE TABLE `phpcms_message_group` (
  3. `id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
  4. `typeid` smallint(5) unsigned NOT NULL DEFAULT '0',
  5. `groupid` tinyint(4) unsigned NOT NULL DEFAULT '0' COMMENT '用户组id',
  6. `subject` char(80) DEFAULT NULL,
  7. `content` text NOT NULL COMMENT '内容',
  8. `inputtime` int(10) unsigned DEFAULT '0',
  9. `status` tinyint(2) unsigned DEFAULT '1',
  10. PRIMARY KEY (`id`)
  11. ) TYPE=MyISAM;