From 07445d9860f29c04edbb7d0caf1a82083b600e1b Mon Sep 17 00:00:00 2001 From: Vincent-Michael Date: Sun, 28 Aug 2016 00:27:16 +0200 Subject: Core/DataStores: Implemented TactKey.db2 --- .../hotfixes/6.x/2016_08_28_00_hotfixes.sql | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 sql/updates/hotfixes/6.x/2016_08_28_00_hotfixes.sql (limited to 'sql') 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; -- cgit v1.2.3