SQL Create statements 4/17/26
This commit is contained in:
10
AttendanceUserSessions.sql
Normal file
10
AttendanceUserSessions.sql
Normal file
@@ -0,0 +1,10 @@
|
||||
CREATE TABLE IF NOT EXISTS AttendanceUserSessions (
|
||||
UserId INT NOT NULL,
|
||||
AttendanceSessionId BIGINT NOT NULL,
|
||||
SchemeSymbolId BIGINT,
|
||||
LastModified DATETIME,
|
||||
LastModifiedBy INT,
|
||||
IsDeleted TINYINT(1),
|
||||
Version BIGINT,
|
||||
PRIMARY KEY (UserId, AttendanceSessionId)
|
||||
) CHARACTER SET utf8mb4;
|
||||
Reference in New Issue
Block a user