Properties

Engine: MyISAM 
Row format:
Rows: Dynamic 
Avg row length: 417 
Data length: 484 
Max data length: 201892 
Index length: 4294967295 
Data free: 15360 
Auto increment:
Create time:  
Update time: 2006/19/07/2006 
Check time: 2006/19/07/2006 
Create_options:  
Comment: utf8_general_ci 

Columns

Name Data Type NULL Default
    help_topic_id  int(10) unsigned    PRI 
    name  varchar(64)    UNI 
    help_category_id  smallint(5) unsigned     
    description  text     
    example  text     
    url  varchar(128)     
Total: 6 column(s)

Indexes

Name Primary Unique
  PRIMARY     
  name     
Total: 2 indexes(s)

SQL

CREATE TABLE `help_topic` (
  `help_topic_id` int(10) unsigned NOT NULL default '0',
  `name` varchar(64) NOT NULL default '',
  `help_category_id` smallint(5) unsigned NOT NULL default '0',
  `description` text NOT NULL,
  `example` text NOT NULL,
  `url` varchar(128) NOT NULL default '',
  PRIMARY KEY  (`help_topic_id`),
  UNIQUE KEY `name` (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='help topics'

See Also

List of tables