mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
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;
|