2025-02-20 17:33:14 +00:00
|
|
|
ALTER TABLE vn.claimEnd
|
2025-02-21 11:21:13 +00:00
|
|
|
MODIFY COLUMN claimDestinationFk tinyint(3) unsigned NOT NULL DEFAULT 1,
|
2025-02-20 17:33:14 +00:00
|
|
|
ADD CONSTRAINT fk_claimEnd_claimDestination
|
|
|
|
FOREIGN KEY (claimDestinationFk)
|
|
|
|
REFERENCES claimDestination(id)
|
|
|
|
ON UPDATE CASCADE
|
2025-02-24 11:17:59 +00:00
|
|
|
ON DELETE RESTRICT;
|