refs #6434 perf: new field in SignInLog table
gitea/salix/pipeline/head Build queued... Details

This commit is contained in:
Javier Segarra 2023-11-29 19:35:37 +00:00
parent 9176cdb4cb
commit 46774b2e73
1 changed files with 1 additions and 0 deletions

View File

@ -7,6 +7,7 @@ CREATE TABLE `account`.`signInLog` (
`token` varchar(255) NOT NULL ,
`userFk` int(10) unsigned DEFAULT NULL,
`creationDate` timestamp NULL DEFAULT current_timestamp(),
`userName` varchar(30) NOT NULL,
`ip` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL,
`owner` tinyint(1) DEFAULT 1,
KEY `userFk` (`userFk`),