SQL Create statements 4/17/26
This commit is contained in:
7
LocalAuthenticationSecurityLog.sql
Normal file
7
LocalAuthenticationSecurityLog.sql
Normal file
@@ -0,0 +1,7 @@
|
||||
CREATE TABLE IF NOT EXISTS LocalAuthenticationSecurityLog (
|
||||
UserId INT NOT NULL,
|
||||
Action VARCHAR(70) NOT NULL COMMENT 'Authorized, AuthorizationRemoved, TwoFactorAuthEnabled, or TwoFactorAuthDisabled',
|
||||
ModifiedBy INT NOT NULL,
|
||||
ModifiedDate DATETIME NOT NULL,
|
||||
PRIMARY KEY (UserId, Action, ModifiedBy, ModifiedDate)
|
||||
) CHARACTER SET utf8mb4;
|
||||
Reference in New Issue
Block a user