diff options
| author | Shauren <shauren.trinity@gmail.com> | 2016-08-10 00:05:56 +0200 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2016-08-10 00:05:56 +0200 |
| commit | bd3541d106bbdb50ad53e38e6c7f2bc78dd6c1dc (patch) | |
| tree | fe04d16d9ca7e5f8afa0e87926cf45aeb357ef16 /sql | |
| parent | 51657e44d1430a93a4256a535af0a67660c95119 (diff) | |
Core/DataStores: Implemented all curve types from Curve.db2
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/hotfixes/6.x/2016_08_09_00_hotfixes.sql | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sql/updates/hotfixes/6.x/2016_08_09_00_hotfixes.sql b/sql/updates/hotfixes/6.x/2016_08_09_00_hotfixes.sql new file mode 100644 index 00000000000..9947375b24e --- /dev/null +++ b/sql/updates/hotfixes/6.x/2016_08_09_00_hotfixes.sql @@ -0,0 +1,11 @@ +-- +-- Table structure for table `curve` +-- +DROP TABLE IF EXISTS `curve`; +CREATE TABLE `curve` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Type` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Unused` tinyint(3) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` smallint(6) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; |
