aboutsummaryrefslogtreecommitdiff
path: root/sql/updates
diff options
context:
space:
mode:
authorXTZGZoReX <none@none>2009-03-19 21:13:52 +0100
committerXTZGZoReX <none@none>2009-03-19 21:13:52 +0100
commit9fe43fa9c0bd21f6c203072f19a77a570680ecab (patch)
tree5592cf3a9b39a04e7e81295408625713a6fdd2bd /sql/updates
parentfd2f768dfd7c877880942477a7d1b1645f5bfab9 (diff)
* 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
Diffstat (limited to 'sql/updates')
-rw-r--r--sql/updates/2020_realmd.sql8
1 files changed, 8 insertions, 0 deletions
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;