mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 13:37:05 +00:00
8 lines
365 B
SQL
8 lines
365 B
SQL
ALTER TABLE creature DROP COLUMN respawntimer;
|
|
|
|
DROP TABLE IF EXISTS `creature_respawn`;
|
|
CREATE TABLE `creature_respawn` (
|
|
`guid` int(11) unsigned NOT NULL default '0' COMMENT 'Global Unique Identifier',
|
|
`respawntime` bigint(40) NOT NULL default '0',
|
|
PRIMARY KEY (`guid`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Grid Loading System';
|