From 38687f577e8144edda8c4e05ed34d3f7a7be076f Mon Sep 17 00:00:00 2001 From: kambizzandi Date: Mon, 4 Apr 2022 20:52:03 +0430 Subject: [PATCH] change lastrenew to bigint in code --- Modules/Account/moduleSrc/ORM/ActiveSessions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/Account/moduleSrc/ORM/ActiveSessions.cpp b/Modules/Account/moduleSrc/ORM/ActiveSessions.cpp index 6b841129..fd8224c8 100644 --- a/Modules/Account/moduleSrc/ORM/ActiveSessions.cpp +++ b/Modules/Account/moduleSrc/ORM/ActiveSessions.cpp @@ -42,7 +42,7 @@ ActiveSessions::ActiveSessions() : { tblActiveSessions::ssnInfo, S(TAPI::JSON_t), QFV, QNull, UPNone, false, false }, { tblActiveSessions::ssnFingerPrint, S(TAPI::MD5_t), QFV.allwaysInvalid(), QNull, UPNone, false, false }, { tblActiveSessions::ssnLastActivity, S(TAPI::DateTime_t), QFV, QNull, UPNone }, - { tblActiveSessions::ssnLastRenew, S(TAPI::DateTime_t), QFV, QNull, UPNone }, + { tblActiveSessions::ssnLastRenew, S(quint64), QFV, QNull, UPNone }, { tblActiveSessions::ssnRemember, S(bool), QFV, false, UPNone }, { tblActiveSessions::ssnStatus, ORM_STATUS_FIELD(Targoman::API::AccountModule::enuSessionStatus, Targoman::API::AccountModule::enuSessionStatus::Active) }, { tblActiveSessions::ssnCreationDateTime, ORM_CREATED_ON },