Feat: Architecture redesign for Assessments, Commands, Modalities, Training Techniques, Reinforcement Schedules, Distractions, and Assessment Responses.
This commit is contained in:
25
static/MySQL/11329c_tbl_DOG_Training_Technique_Temp.sql
Normal file
25
static/MySQL/11329c_tbl_DOG_Training_Technique_Temp.sql
Normal file
@@ -0,0 +1,25 @@
|
||||
|
||||
USE fetchmetrics;
|
||||
|
||||
-- DROP TABLE IF EXISTS fetchmetrics.DOG_Training_Technique_Temp;
|
||||
|
||||
SELECT CONCAT('WARNING: Table ', TABLE_SCHEMA, '.', TABLE_NAME, ' already exists.') AS msg_warning
|
||||
FROM INFORMATION_SCHEMA.TABLES
|
||||
WHERE
|
||||
TABLE_SCHEMA = 'fetchmetrics'
|
||||
AND TABLE_NAME = 'DOG_Training_Technique_Temp'
|
||||
;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS fetchmetrics.DOG_Training_Technique_Temp (
|
||||
id_temp INT NOT NULL PRIMARY KEY AUTO_INCREMENT
|
||||
, id_technique INT
|
||||
, code VARCHAR(1000)
|
||||
, name VARCHAR(1000)
|
||||
, description VARCHAR(1000) NOT NULL
|
||||
, active BIT
|
||||
|
||||
, does_meet_id_filters BIT
|
||||
, does_meet_non_id_filters BIT
|
||||
|
||||
, guid BINARY(36)
|
||||
);
|
||||
Reference in New Issue
Block a user