Table: nornix_site.block

Structure Comment test on table
NameTypeNullKeyDefaultExtraComment
Nosmallint(6)NOPRIauto_incrementComment test on field
Namevarchar(16)NOUNI
ContentTypeNoint(10) unsignedNO0
DatablobNO
Indexes
Non-uniqueKeySeqColumnCollationCardinalitySub partPackedNullTypeComment
0Name1NameA3BTREE
Information
EngineRow formatTable collationCreate options
MyISAMDynamicutf8_general_cichecksum=1 delay_key_write=1 row_format=FIXED
CREATE TABLE `block` (
  `No` smallint(6) NOT NULL auto_increment COMMENT 'Comment test on field',
  `Name` varchar(16) NOT NULL,
  `ContentTypeNo` int(10) unsigned NOT NULL default '',
  `Data` blob NOT NULL,
  PRIMARY KEY  (`No`),
  UNIQUE KEY `Name` (`Name`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 CHECKSUM=1 DELAY_KEY_WRITE=1 ROW_FORMAT=FIXED
COMMENT='Comment test on table'