root/trunk/sql/updates/0.6/3075_gameobject.sql @ 2

Revision 2, 494 bytes (checked in by yumileroy, 17 years ago)

[svn] * Proper SVN structure

Original author: Neo2003
Date: 2008-10-02 16:23:55-05:00

Line 
1ALTER TABLE `gameobject`
2  CHANGE `respawntimer` `spawntimesecs` int(11) unsigned NOT NULL default '0';
3
4UPDATE `gameobject` SET `spawntimesecs` = `spawntimesecs` / 1000;
5
6DROP TABLE IF EXISTS `gameobject_respawn`;
7CREATE TABLE `gameobject_respawn` (
8  `guid` int(11) unsigned NOT NULL default '0' COMMENT 'Global Unique Identifier',
9  `respawntime` bigint(40) NOT NULL default '0',
10  PRIMARY KEY (`guid`)
11) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Grid Loading System';
12
Note: See TracBrowser for help on using the browser.