aboutsummaryrefslogtreecommitdiff
path: root/sql/updates/2031_realmd.sql
diff options
context:
space:
mode:
authorXTZGZoReX <none@none>2009-03-20 16:16:16 +0100
committerXTZGZoReX <none@none>2009-03-20 16:16:16 +0100
commit0838736ce7dce720f0c772c5efb0602712f6777d (patch)
tree13bcfa20d0aacd214f1c14da084dbcc0cb7eb6c6 /sql/updates/2031_realmd.sql
parentd1adac0d11847c893b2df0778b81dbbbb79b20ee (diff)
* Missed a config update in realmd.
* Correct revision number for SQL update for DB logging. --HG-- branch : trunk rename : sql/updates/2020_realmd.sql => sql/updates/2031_realmd.sql
Diffstat (limited to 'sql/updates/2031_realmd.sql')
-rw-r--r--sql/updates/2031_realmd.sql8
1 files changed, 8 insertions, 0 deletions
diff --git a/sql/updates/2031_realmd.sql b/sql/updates/2031_realmd.sql
new file mode 100644
index 00000000000..fb81c0e99c8
--- /dev/null
+++ b/sql/updates/2031_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;