From 9fe43fa9c0bd21f6c203072f19a77a570680ecab Mon Sep 17 00:00:00 2001 From: XTZGZoReX Date: Thu, 19 Mar 2009 21:13:52 +0100 Subject: * Implementing database logging: ** 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 --- sql/updates/2020_realmd.sql | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 sql/updates/2020_realmd.sql (limited to 'sql/updates') diff --git a/sql/updates/2020_realmd.sql b/sql/updates/2020_realmd.sql new file mode 100644 index 00000000000..fb81c0e99c8 --- /dev/null +++ b/sql/updates/2020_realmd.sql @@ -0,0 +1,8 @@ +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; -- cgit v1.2.3