ALTER TABLE `phppos_items_taxes`
ADD CONSTRAINT `phppos_items_taxes_ibfk_1`
FOREIGN KEY (`item_id`)
REFERENCES `phppos_items` (`item_id`)
ON DELETE CASCADE;
Does this mean when phppos_items.id
is deleted, it will be delete entries on phppos_items_taxes
?
I am just have a hard time interpreting it.