mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 12:12:34 +03:00
Should Fix Issue #1569
Varchar(512) was truncating certain vehicle hitpoints and preventing vehicle loading. The HiveExt dll handles hitpoints as a string which has a char limit far greater than 512, so simply updating the column should fix the issue. Also update the ChracterID column for #1371 - new Hive dll will be required
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
-- ----------------------------
|
||||
-- Update Object_DATA to support longer CharacterID and hitpoints
|
||||
-- ----------------------------
|
||||
ALTER TABLE Object_DATA MODIFY COLUMN CharacterID bigint(20);
|
||||
ALTER TABLE Object_DATA MODIFY COLUMN Hitpoints varchar(1024);
|
||||
|
||||
-- ----------------------------
|
||||
-- Add new attachments category to DB traders
|
||||
-- ----------------------------
|
||||
|
||||
Reference in New Issue
Block a user