diff options
| author | Traesh <traesh@farahlon.com> | 2018-10-23 16:20:45 +0200 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2019-08-24 17:13:17 +0200 |
| commit | 548d79bb06cfba3517347070dfe606748dda55ab (patch) | |
| tree | 04d48461378ed52a7ac3075b8119e18ab985925b /sql | |
| parent | 11674e2721bf402b6f3b03e9d7dba9a57bbf4c4c (diff) | |
Core/DataStores: Implemented WorldStateExpression
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; |
