Table: nornix_site.documentcache
Structure Name | Type | Null | Key | Default | Extra | Comment |
---|
DocNo | int(10) unsigned | NO | PRI | 0 | | |
---|
Headers | varchar(255) | NO | | | | |
---|
HTML | mediumtext | NO | | | | |
---|
TS | timestamp | NO | | 0000-00-00 00:00:00 | | |
---|
MaxAge | int(10) unsigned | NO | | 0 | | |
---|
IndexesNon-unique | Key | Seq | Column | Collation | Cardinality | Sub part | Packed | Null | Type | Comment |
---|
0 | PRIMARY | 1 | DocNo | A | 0 | | | | BTREE | |
InformationEngine | Row format | Table collation | Create options |
---|
MyISAM | Dynamic | utf8_general_ci | |
CREATE TABLE `documentcache` (
`DocNo` int(10) unsigned NOT NULL default '',
`Headers` varchar(255) character set ascii NOT NULL default '',
`HTML` mediumtext NOT NULL,
`TS` timestamp NOT NULL default '0000-00-00 00:00:00',
`MaxAge` int(10) unsigned NOT NULL default '',
PRIMARY KEY (`DocNo`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8