Table: nornix_system.classattribute

Structure
NameTypeNullKeyDefaultExtraComment
Noint(10) unsignedNOPRIauto_increment
ClassNoint(10) unsignedNOMUL0
Attributevarchar(48)NO
Indexes
Non-uniqueKeySeqColumnCollationCardinalitySub partPackedNullTypeComment
0ClassAttribute2AttributeA0BTREE
Information
EngineRow formatTable collationCreate options
MyISAMDynamicutf8_general_ci
CREATE TABLE `classattribute` (
  `No` int(10) unsigned NOT NULL auto_increment,
  `ClassNo` int(10) unsigned NOT NULL default '',
  `Attribute` varchar(48) NOT NULL,
  PRIMARY KEY  (`No`),
  UNIQUE KEY `ClassAttribute` (`ClassNo`,`Attribute`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8