I have set up a FK as follows
ALTER TABLE lk_sub_con ADD FOREIGN KEY (type) REFERENCESlk_sort_of_contact(type_code);
However when I do this
INSERT INTO lk_sort_of_contact (type_code) VALUES ('1') (ie: a NULL intothe FK) it works
Is this a bug?