Files
TrinityCore/sql/updates/2031_realmd.sql
XTZGZoReX 0838736ce7 * 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
2009-03-20 16:16:16 +01:00

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;