Feat(SQL, UI): Redesign database with much more detailed command response quality analysis and created successfully loading Dog Command Links page
This commit is contained in:
31
static/MySQL/11204_tbl_DOG_Location_Link.sql
Normal file
31
static/MySQL/11204_tbl_DOG_Location_Link.sql
Normal file
@@ -0,0 +1,31 @@
|
||||
|
||||
USE parts;
|
||||
|
||||
SELECT CONCAT('WARNING: Table ', TABLE_SCHEMA, '.', TABLE_NAME, ' already exists.') AS msg_warning
|
||||
FROM INFORMATION_SCHEMA.TABLES
|
||||
WHERE
|
||||
TABLE_SCHEMA = 'parts'
|
||||
AND TABLE_NAME = 'DOG_Location_Link'
|
||||
;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS parts.DOG_Location_Link (
|
||||
id_link INT NOT NULL AUTO_INCREMENT PRIMARY KEY
|
||||
, id_location_parent INT
|
||||
, CONSTRAINT FK_DOG_Location_Link_id_location_parent
|
||||
FOREIGN KEY (id_location_parent)
|
||||
REFERENCES parts.DOG_Location(id_location)
|
||||
, id_location_child INT
|
||||
, CONSTRAINT FK_DOG_Location_Link_id_location_child
|
||||
FOREIGN KEY (id_location_child)
|
||||
REFERENCES parts.DOG_Location(id_location)
|
||||
, active BIT NOT NULL DEFAULT 1
|
||||
, created_on DATETIME
|
||||
, id_user_created_by INT
|
||||
, CONSTRAINT FK_DOG_Location_Link_id_user_created_by
|
||||
FOREIGN KEY (id_user_created_by)
|
||||
REFERENCES parts.DOG_User(id_user)
|
||||
, id_change_set INT
|
||||
, CONSTRAINT FK_DOG_Location_Link_id_change_set
|
||||
FOREIGN KEY (id_change_set)
|
||||
REFERENCES parts.DOG_Dog_Change_Set(id_change_set)
|
||||
);
|
||||
Reference in New Issue
Block a user