Feat: Assessment page completed with save method combining Assessment, Distraction, Assessment Command Modality Link, and Assessment Response save for creating new complete Assessnent.
This commit is contained in:
@@ -1,6 +1,8 @@
|
||||
|
||||
USE parts;
|
||||
|
||||
-- DROP TABLE IF EXISTS parts.DOG_Distraction;
|
||||
|
||||
SELECT CONCAT('WARNING: Table ', TABLE_SCHEMA, '.', TABLE_NAME, ' already exists.') AS msg_warning
|
||||
FROM INFORMATION_SCHEMA.TABLES
|
||||
WHERE
|
||||
@@ -10,6 +12,7 @@ WHERE
|
||||
|
||||
CREATE TABLE IF NOT EXISTS parts.DOG_Distraction (
|
||||
id_distraction INT NOT NULL AUTO_INCREMENT PRIMARY KEY
|
||||
, id_temp INT
|
||||
, id_assessment INT NOT NULL
|
||||
, CONSTRAINT FK_DOG_Distraction_id_assessment
|
||||
FOREIGN KEY (id_assessment)
|
||||
|
||||
Reference in New Issue
Block a user