Table: nornix_root.errorlog

Structure
NameTypeNullKeyDefaultExtraComment
TStimestampNOCURRENT_TIMESTAMP
Categoryvarchar(32)NO
Hostvarchar(64)NO
MessagetextNO
Information
EngineRow formatTable collationCreate options
MyISAMDynamicutf8_general_ci
CREATE TABLE `errorlog` (
  `TS` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
  `Category` varchar(32) NOT NULL,
  `Host` varchar(64) NOT NULL,
  `Message` text NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8