Table: nornix_site.pageresource

Structure Resources (images) for individual pages.
NameTypeNullKeyDefaultExtraComment
Namevarchar(80)NOPRI
DocumentNoint(10) unsignedNOPRI0
MimeTypeNoint(10) unsignedNOPRI0
DatalongblobNO
TStimestampNOCURRENT_TIMESTAMP
Descriptionvarchar(127)NO
ContentTypeNoint(10) unsignedYES
Widthint(10) unsignedNO0
Heightint(11) unsignedNO0
Indexes
Non-uniqueKeySeqColumnCollationCardinalitySub partPackedNullTypeComment
1DocumentNo1DocumentNoABTREE
Information
EngineRow formatTable collationCreate options
MyISAMDynamicutf8_general_ci
CREATE TABLE `pageresource` (
  `Name` varchar(80) NOT NULL default '',
  `DocumentNo` int(10) unsigned NOT NULL default '',
  `MimeTypeNo` int(10) unsigned NOT NULL default '',
  `Data` longblob NOT NULL,
  `TS` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
  `Description` varchar(127) NOT NULL,
  `ContentTypeNo` int(10) unsigned default NULL,
  `Width` int(10) unsigned NOT NULL default '',
  `Height` int(11) unsigned NOT NULL default '',
  PRIMARY KEY  (`Name`,`DocumentNo`,`MimeTypeNo`),
  KEY `DocumentNo` (`DocumentNo`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Resources (images) for individual pages.'