diff options
| author | Vincent-Michael <vincent_michael@gmx.de> | 2016-08-28 00:27:16 +0200 |
|---|---|---|
| committer | Vincent-Michael <vincent_michael@gmx.de> | 2016-08-28 00:27:16 +0200 |
| commit | 07445d9860f29c04edbb7d0caf1a82083b600e1b (patch) | |
| tree | d9580ea464d5c32dd5f699bb0bd573fc5618602e /sql | |
| parent | 9f7c26273b96ae54542cf90872fd6c638879f0eb (diff) | |
Core/DataStores: Implemented TactKey.db2
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/hotfixes/6.x/2016_08_28_00_hotfixes.sql | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/sql/updates/hotfixes/6.x/2016_08_28_00_hotfixes.sql b/sql/updates/hotfixes/6.x/2016_08_28_00_hotfixes.sql new file mode 100644 index 00000000000..fe6907252f1 --- /dev/null +++ b/sql/updates/hotfixes/6.x/2016_08_28_00_hotfixes.sql @@ -0,0 +1,26 @@ +-- +-- Table structure for table `tact_key` +-- + +DROP TABLE IF EXISTS `tact_key`; +CREATE TABLE `tact_key` ( + `Id` int(10) unsigned NOT NULL DEFAULT '0', + `Key1` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key2` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key3` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key4` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key5` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key6` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key7` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key8` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key9` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key10` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key11` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key12` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key13` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key14` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key15` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key16` tinyint(3) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` smallint(6) NOT NULL DEFAULT '0', + PRIMARY KEY (`Id`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; |
