mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-18 16:38:42 +01:00
* Correct revision number for SQL update for DB logging. --HG-- branch : trunk rename : sql/updates/2020_realmd.sql => sql/updates/2031_realmd.sql
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;
|