Table: nornix_system.doctype

Structure
NameTypeNullKeyDefaultExtraComment
Namevarchar(24)NOPRI
Codevarchar(255)NO
Indexes
Non-uniqueKeySeqColumnCollationCardinalitySub partPackedNullTypeComment
0PRIMARY1NameA4BTREE
Information
EngineRow formatTable collationCreate options
MyISAMFixedutf8_general_cirow_format=FIXED
CREATE TABLE `doctype` (
  `Name` varchar(24) NOT NULL,
  `Code` varchar(255) NOT NULL,
  PRIMARY KEY  (`Name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED