SQL Create statements 4/17/26
This commit is contained in:
8
SurveyQuestionAttempts.sql
Normal file
8
SurveyQuestionAttempts.sql
Normal file
@@ -0,0 +1,8 @@
|
||||
CREATE TABLE IF NOT EXISTS SurveyQuestionAttempts (
|
||||
QuestionAttemptId INT NOT NULL,
|
||||
AttemptId INT NOT NULL,
|
||||
QuestionId VARCHAR(36) NOT NULL,
|
||||
IsDeleted TINYINT(1),
|
||||
PRIMARY KEY (QuestionAttemptId),
|
||||
CONSTRAINT fk_sqa_attempt FOREIGN KEY (AttemptId) REFERENCES SurveyAttempts(AttemptId)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
Reference in New Issue
Block a user