Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/* Migration File: m20220404_203854_AAA_change_session_lastrenew_to_bigint */

DELETE FROM `tblActiveSessions` WHERE ssnLastRenew IS NOT NULL;

ALTER TABLE `tblActiveSessions`
CHANGE COLUMN `ssnLastRenew` `ssnLastRenew` BIGINT UNSIGNED NULL DEFAULT NULL AFTER `ssnLastActivity`;
2 changes: 1 addition & 1 deletion conf/api.conf
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ WarningLevel = 9
# Valid values: 0 to 65535
# Default value: 300
#---------------------------------------
TTL = 36000
TTL = 30

#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
# @@@ Logger SECTION @@@
Expand Down