SQL Create statements 4/17/26
This commit is contained in:
15
CompetencyActivityResults.sql
Normal file
15
CompetencyActivityResults.sql
Normal file
@@ -0,0 +1,15 @@
|
||||
CREATE TABLE IF NOT EXISTS CompetencyActivityResults (
|
||||
ActivityId BIGINT NOT NULL,
|
||||
OrgUnitId INT NOT NULL,
|
||||
UserId INT NOT NULL,
|
||||
LearningObjectId BIGINT NOT NULL,
|
||||
IsAchieved TINYINT(1),
|
||||
PercentAchieved DECIMAL(19, 9),
|
||||
RubricScore DECIMAL(19, 9),
|
||||
RubricLevelAchieved VARCHAR(256),
|
||||
RubricId BIGINT,
|
||||
RubricCriterionId BIGINT,
|
||||
AchievedDate DATETIME,
|
||||
Version BIGINT,
|
||||
PRIMARY KEY (ActivityId, OrgUnitId, UserId, LearningObjectId)
|
||||
) CHARACTER SET utf8mb4;
|
||||
Reference in New Issue
Block a user