SQL Create statements 4/17/26
This commit is contained in:
13
AssignmentSpecialAccess.sql
Normal file
13
AssignmentSpecialAccess.sql
Normal file
@@ -0,0 +1,13 @@
|
||||
CREATE TABLE IF NOT EXISTS AssignmentSpecialAccess (
|
||||
DropboxId BIGINT NOT NULL,
|
||||
UserId INT NOT NULL,
|
||||
StartDate DATETIME,
|
||||
EndDate DATETIME,
|
||||
DueDate DATETIME,
|
||||
ModifiedBy INT,
|
||||
LastModified DATETIME,
|
||||
IsDeleted TINYINT(1),
|
||||
StartDateAvailabilityType SMALLINT,
|
||||
EndDateAvailabilityType SMALLINT,
|
||||
PRIMARY KEY (DropboxId, UserId)
|
||||
) CHARACTER SET utf8mb4;
|
||||
Reference in New Issue
Block a user