Core/Misc: Change all unix time columns in character database to bigint (signed)
Port From (https://github.com/TrinityCore/TrinityCore/commit/d29dd1eeb5c52dc76bd741fe1ee0e875c416b8e7)
This commit is contained in:
@@ -654,7 +654,7 @@ namespace Game.Chat
|
||||
|
||||
// account name will be empty for not existed account
|
||||
Global.AccountMgr.GetName(info.accountId, out info.accountName);
|
||||
info.deleteDate = result.Read<uint>(3);
|
||||
info.deleteDate = result.Read<long>(3);
|
||||
foundList.Add(info);
|
||||
}
|
||||
while (result.NextRow());
|
||||
|
||||
Reference in New Issue
Block a user