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:
@@ -1691,7 +1691,7 @@ namespace Game
|
||||
|
||||
stmt = DB.Characters.GetPreparedStatement(CharStatements.INS_CHARACTER_BAN);
|
||||
stmt.AddValue(0, guid.GetCounter());
|
||||
stmt.AddValue(1, duration_secs);
|
||||
stmt.AddValue(1, (long)duration_secs);
|
||||
stmt.AddValue(2, author);
|
||||
stmt.AddValue(3, reason);
|
||||
trans.Append(stmt);
|
||||
|
||||
Reference in New Issue
Block a user