SQL Create statements 4/17/26

This commit is contained in:
2026-04-17 15:06:36 -04:00
parent 1daac33c0e
commit 043584e62b
130 changed files with 1660 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
CREATE TABLE IF NOT EXISTS LTIAdvantageRegistrationAudit (
Action VARCHAR(10) COMMENT 'Registered, Updated, or Deleted',
ClientId VARCHAR(255) NOT NULL,
ToolName VARCHAR(200),
Domain VARCHAR(2083),
RedirectURLs TEXT,
KeysetURL VARCHAR(255),
LoginURL VARCHAR(255),
LTIVersion VARCHAR(12),
IsRegistrationEnabled TINYINT(1),
SendInstitutionRole TINYINT(1),
TargetLinkURI VARCHAR(255),
ModifiedBy BIGINT,
HasAssignmentAndGradeServices TINYINT(1),
HasSubmissionReview TINYINT(1),
HasDeepLinking TINYINT(1),
HasNamesAndRoleProvisioningServices TINYINT(1),
HasActivityItemProfile TINYINT(1),
HasPlatformNotificationService TINYINT(1),
Timestamp DATETIME NOT NULL,
HasAssetProcessor TINYINT(1),
PRIMARY KEY (ClientId, Timestamp)
) CHARACTER SET utf8mb4;