Table: nornix_system.metaelement
Structure Name | Type | Null | Key | Default | Extra | Comment |
---|
No | int(10) unsigned | NO | PRI | | auto_increment | |
---|
Name | varchar(24) | NO | UNI | | | |
---|
Description | int(10) unsigned | YES | | | | |
---|
IndexesNon-unique | Key | Seq | Column | Collation | Cardinality | Sub part | Packed | Null | Type | Comment |
---|
0 | NameUnique | 1 | Name | A | 15 | | | | BTREE | |
InformationEngine | Row format | Table collation | Create options |
---|
MyISAM | Dynamic | utf8_general_ci | |
CREATE TABLE `metaelement` (
`No` int(10) unsigned NOT NULL auto_increment,
`Name` varchar(24) NOT NULL default '',
`Description` int(10) unsigned default NULL,
PRIMARY KEY (`No`),
UNIQUE KEY `NameUnique` (`Name`)
) ENGINE=MyISAM AUTO_INCREMENT=16 DEFAULT CHARSET=utf8