Table: nornix_system.class

Structure
NameTypeNullKeyDefaultExtraComment
Noint(10) unsignedNOPRIauto_increment
Namevarchar(32)NO
DescNoint(10) unsignedYES
LegendNoint(10) unsignedYES
Indexes
Non-uniqueKeySeqColumnCollationCardinalitySub partPackedNullTypeComment
0PRIMARY1NoA0BTREE
Information
EngineRow formatTable collationCreate options
MyISAMFixedutf8_general_cirow_format=FIXED
CREATE TABLE `class` (
  `No` int(10) unsigned NOT NULL auto_increment,
  `Name` varchar(32) NOT NULL,
  `DescNo` int(10) unsigned default NULL,
  `LegendNo` int(10) unsigned default NULL,
  PRIMARY KEY  (`No`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED