Core/DataStores: Implemented WorldStateExpression

This commit is contained in:
Traesh
2018-10-23 16:20:45 +02:00
committed by Shauren
parent 11674e2721
commit 548d79bb06
13 changed files with 584 additions and 9 deletions

View 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;