mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-18 00:18:43 +01:00
** LogTime and LogColors config options removed due to incompatibility. ** Old file logging still available. ** Totally redone the Log class. ** Config options added: EnableLogDB, DBLogLevel, LogDB.Char, LogDB.RA, LogDB.GM -- remember to update config file. ** SQL updates attached. --HG-- branch : trunk
9 lines
208 B
SQL
9 lines
208 B
SQL
DROP TABLE IF EXISTS `logs`;
|
|
-- create logs table
|
|
CREATE TABLE `logs` (
|
|
`time` int(14) NOT NULL,
|
|
`realm` int(4) NOT NULL,
|
|
`type` int(4) NOT NULL,
|
|
`string` text
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|