SQL Create statements 4/17/26
This commit is contained in:
20
CompetencyActivities.sql
Normal file
20
CompetencyActivities.sql
Normal file
@@ -0,0 +1,20 @@
|
||||
CREATE TABLE IF NOT EXISTS CompetencyActivities (
|
||||
ActivityId BIGINT NOT NULL,
|
||||
OrgUnitId INT,
|
||||
ActivityName VARCHAR(256),
|
||||
ActivityTypeId INT,
|
||||
AssessmentType VARCHAR(7),
|
||||
ObjectLookupId BIGINT,
|
||||
RubricId BIGINT,
|
||||
LevelId BIGINT,
|
||||
RubricCriterionId BIGINT,
|
||||
AssessmentThresholdCriteria VARCHAR(2),
|
||||
AssessmentThreshold DECIMAL(19, 9),
|
||||
IsAutoEval TINYINT(1),
|
||||
RubricName VARCHAR(256),
|
||||
RubricLevelRequired VARCHAR(256),
|
||||
ObjectId BIGINT,
|
||||
ActivityType VARCHAR(50),
|
||||
Version BIGINT,
|
||||
PRIMARY KEY (ActivityId)
|
||||
) CHARACTER SET utf8mb4;
|
||||
Reference in New Issue
Block a user