SQL Create statements 4/17/26
This commit is contained in:
11
AttendanceSessions.sql
Normal file
11
AttendanceSessions.sql
Normal file
@@ -0,0 +1,11 @@
|
||||
CREATE TABLE IF NOT EXISTS AttendanceSessions (
|
||||
AttendanceSessionId BIGINT NOT NULL,
|
||||
AttendanceRegisterId BIGINT NOT NULL,
|
||||
Name VARCHAR(128),
|
||||
Description VARCHAR(256),
|
||||
SortOrder INT,
|
||||
Version BIGINT,
|
||||
DateDeleted DATETIME,
|
||||
DeletedBy INT,
|
||||
PRIMARY KEY (AttendanceSessionId)
|
||||
) CHARACTER SET utf8mb4;
|
||||
Reference in New Issue
Block a user