Table: nornix_system.view
Structure | Name | Type | Null | Key | Default | Extra | Comment |
|---|
| Extension | varchar(48) | NO | PRI | | | |
|---|
| Handler | varchar(64) | NO | | | | |
|---|
| System | tinyint(1) unsigned | NO | | 0 | | |
|---|
| Compressed | tinyint(1) unsigned | NO | | 0 | | |
|---|
Indexes| Non-unique | Key | Seq | Column | Collation | Cardinality | Sub part | Packed | Null | Type | Comment |
|---|
| 0 | PRIMARY | 1 | Extension | A | 37 | | | | BTREE | |
Information| Engine | Row format | Table collation | Create options |
|---|
| MyISAM | Fixed | utf8_general_ci | pack_keys=1 row_format=FIXED |
CREATE TABLE `view` (
`Extension` varchar(48) NOT NULL,
`Handler` varchar(64) NOT NULL,
`System` tinyint(1) unsigned NOT NULL default '',
`Compressed` tinyint(1) unsigned NOT NULL default '',
PRIMARY KEY (`Extension`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 PACK_KEYS=1 ROW_FORMAT=FIXED