From 548d79bb06cfba3517347070dfe606748dda55ab Mon Sep 17 00:00:00 2001 From: Traesh Date: Tue, 23 Oct 2018 16:20:45 +0200 Subject: Core/DataStores: Implemented WorldStateExpression --- sql/updates/hotfixes/master/2019_08_24_00_hotfixes.sql | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 sql/updates/hotfixes/master/2019_08_24_00_hotfixes.sql (limited to 'sql/updates/hotfixes') diff --git a/sql/updates/hotfixes/master/2019_08_24_00_hotfixes.sql b/sql/updates/hotfixes/master/2019_08_24_00_hotfixes.sql new file mode 100644 index 00000000000..7604d377375 --- /dev/null +++ b/sql/updates/hotfixes/master/2019_08_24_00_hotfixes.sql @@ -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; -- cgit v1.2.3