mirror of
https://github.com/araxiaonline/TrinityCore.git
synced 2026-06-15 12:42:43 -04:00
* Updated world_scripts_structure * Moved older sql files to 3.0.9_old folder and in file 0000_3.0.9_old (sql/updates) are stored all these sqls * Also created folder Obsolete_updates where you can find unverified sqls * This should help with sql maintaining --HG-- branch : trunk
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;
|