| # MySQL-Front Dump 2.5
#
# Host: localhost   Database: comment
# --------------------------------------------------------
# Server version 4.1.22-community-nt
#
# Table structure for table 'db_comment'
#
DROP TABLE IF EXISTS `db_comment`;
CREATE TABLE `db_comment` (
  `_id` bigint(11) unsigned NOT NULL auto_increment,
  `id` varchar(20) NOT NULL default '',
  `msg` text,
  `userid` bigint(11) unsigned default '1',
  `dtime` datetime default NULL,
  PRIMARY KEY  (`_id`,`id`),
  UNIQUE KEY `_id` (`_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
 |