Table: nornix_site.documentmeta

Structure
NameTypeNullKeyDefaultExtraComment
MetadataNoint(10) unsignedNOPRIauto_increment
DocumentNoint(10) unsignedNO0
Indexes
Non-uniqueKeySeqColumnCollationCardinalitySub partPackedNullTypeComment
0MetaDocUnique2DocumentNoA6BTREE
Information
EngineRow formatTable collationCreate options
MyISAMFixedutf8_general_cirow_format=FIXED
CREATE TABLE `documentmeta` (
  `MetadataNo` int(10) unsigned NOT NULL auto_increment,
  `DocumentNo` int(10) unsigned NOT NULL default '',
  PRIMARY KEY  (`MetadataNo`),
  UNIQUE KEY `MetaDocUnique` (`MetadataNo`,`DocumentNo`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED