diff options
| author | MitchesD <majklprofik@seznam.cz> | 2015-07-04 13:56:49 +0200 |
|---|---|---|
| committer | MitchesD <majklprofik@seznam.cz> | 2015-07-04 13:56:49 +0200 |
| commit | f22c2c3f303ee76c76f804f94aa0a7c7b2094ce5 (patch) | |
| tree | c9dc76cf199af2dd059be291d9acf4f8c947518e /sql/updates | |
| parent | faeaebc78332ed97d2bfada022b71ddef953be39 (diff) | |
Core/DataStores: moved GameTables to separate method and load them from DB2
Diffstat (limited to 'sql/updates')
| -rw-r--r-- | sql/updates/hotfixes/2015_07_04_00_hotfixes.sql | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/sql/updates/hotfixes/2015_07_04_00_hotfixes.sql b/sql/updates/hotfixes/2015_07_04_00_hotfixes.sql new file mode 100644 index 00000000000..c4853061485 --- /dev/null +++ b/sql/updates/hotfixes/2015_07_04_00_hotfixes.sql @@ -0,0 +1,24 @@ +/*Table structure for table `game_tables` */ + +DROP TABLE IF EXISTS `game_tables`; + +CREATE TABLE `game_tables` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Name` text NOT NULL, + `NumRows` int(10) unsigned NOT NULL DEFAULT '0', + `NumColumns` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` smallint(5) NOT NULL, + PRIMARY KEY (`ID`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; + +/*Table structure for table `game_tables_locale` */ + +DROP TABLE IF EXISTS `game_tables_locale`; + +CREATE TABLE `game_tables_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Name_lang` text NOT NULL, + `VerifiedBuild` smallint(6) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; |
