mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-17 08:00:48 +01:00
* Added some missing querries to full script file * Updated a lot of another sql files from sql/updates folder - still in progress --HG-- branch : trunk
6 lines
267 B
SQL
6 lines
267 B
SQL
DROP TABLE IF EXISTS `transport_events`;
|
|
CREATE TABLE `transport_events` (
|
|
`entry` int(11) unsigned NOT NULL default '0',
|
|
`waypoint_id` int(11) unsigned NOT NULL default '0',
|
|
`event_id` int(11) unsigned NOT NULL default '0'
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8; |