mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-30 21:57:01 +01:00
Core/Fishing: implement retail-like fishing skill-up functionality (#17528)
Follow-up to 6f1e823.
Forgot to update base characters database. Sorry.
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
DROP TABLE IF EXISTS `character_fishingsteps`;
|
||||
CREATE TABLE `character_fishingsteps` (
|
||||
`guid` BIGINT(20) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
|
||||
`fishingSteps` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`guid`)
|
||||
) ENGINE=INNODB DEFAULT CHARSET=utf8;
|
||||
Reference in New Issue
Block a user