From 419df1ea88e85fc40232b4dcb8f9fda440c5d7a0 Mon Sep 17 00:00:00 2001 From: Mordred Date: Tue, 24 Oct 2017 00:00:22 +0200 Subject: [PATCH] new layout for charaquest table --- sql/charaquestnew.sql | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 sql/charaquestnew.sql diff --git a/sql/charaquestnew.sql b/sql/charaquestnew.sql new file mode 100644 index 00000000..ec1b0f16 --- /dev/null +++ b/sql/charaquestnew.sql @@ -0,0 +1,20 @@ +SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; +SET time_zone = "+00:00"; +DROP TABLE IF EXISTS `charaquestnew`; +CREATE TABLE charaquestnew ( + `CharacterId` int(20) DEFAULT '0', + `slotId` int(20) DEFAULT '0', + `QuestId` int(5) DEFAULT '0', + `Sequence` int(3) DEFAULT '0', + `Flags` int(3) DEFAULT '0', + `Variables_0` int(3) DEFAULT '0', + `Variables_1` int(3) DEFAULT '0', + `Variables_2` int(3) DEFAULT '0', + `Variables_3` int(3) DEFAULT '0', + `Variables_4` int(3) DEFAULT '0', + `Variables_5` int(3) DEFAULT '0', + `Variables_6` int(3) DEFAULT '0', + `IS_DELETE` int(3) DEFAULT '0', + `IS_NOT_ACTIVE_FLG` int(3) DEFAULT '0', + `UPDATE_DATE` date +) ENGINE=MyISAM DEFAULT CHARSET=utf8; \ No newline at end of file