diff options
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/hotfixes/master/2019_08_24_00_hotfixes.sql | 10 |
1 files changed, 10 insertions, 0 deletions
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; |
