mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-23 18:36:31 +01:00
Core/DataStores: Implemented WorldStateExpression
This commit is contained in:
10
sql/updates/hotfixes/master/2019_08_24_00_hotfixes.sql
Normal file
10
sql/updates/hotfixes/master/2019_08_24_00_hotfixes.sql
Normal file
@@ -0,0 +1,10 @@
|
||||
--
|
||||
-- Table structure for table `world_state_expression`
|
||||
--
|
||||
DROP TABLE IF EXISTS `world_state_expression`;
|
||||
CREATE TABLE `world_state_expression` (
|
||||
`ID` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`Expression` text,
|
||||
`VerifiedBuild` smallint(6) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`ID`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
Reference in New Issue
Block a user