diff options
| author | Traesh <Traesh@users.noreply.github.com> | 2017-05-14 11:40:55 +0200 |
|---|---|---|
| committer | joschiwald <joschiwald.trinity@gmail.com> | 2017-05-14 11:40:55 +0200 |
| commit | c73ce93f4cf84667d23c2ec7e425f40a845eaf4f (patch) | |
| tree | 255a3af04144a58e3156491bffd1aa743fb06bfa /sql/updates/hotfixes | |
| parent | 3e18fcb8fd4ac8e9700f10eb3b6a1292c0f8beb8 (diff) | |
Core/Entities : Basic Conversation Implementation (#18010)
Diffstat (limited to 'sql/updates/hotfixes')
| -rw-r--r-- | sql/updates/hotfixes/master/2017_05_14_00_hotfixes.sql | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/sql/updates/hotfixes/master/2017_05_14_00_hotfixes.sql b/sql/updates/hotfixes/master/2017_05_14_00_hotfixes.sql new file mode 100644 index 00000000000..03cd2e19698 --- /dev/null +++ b/sql/updates/hotfixes/master/2017_05_14_00_hotfixes.sql @@ -0,0 +1,14 @@ +DROP TABLE IF EXISTS `conversation_line`; +CREATE TABLE `conversation_line` ( + `Id` int (10) UNSIGNED NOT NULL, + `BroadcastTextID` int (10) UNSIGNED NOT NULL, + `SpellVisualKitID` int (10) UNSIGNED NOT NULL, + `Duration` int (10) UNSIGNED NOT NULL, + `NextLineID` smallint (5) UNSIGNED NOT NULL, + `Unk1` smallint (5) UNSIGNED NOT NULL, + `Yell` tinyint (3) UNSIGNED NOT NULL, + `Unk2` tinyint (3) UNSIGNED NOT NULL, + `Unk3` tinyint (3) UNSIGNED NOT NULL, + `VerifiedBuild` int (10) UNSIGNED NOT NULL DEFAULT 0, + PRIMARY KEY (`Id`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; |
