Hello All,

I have a table `vb_test` having one column `id`. I applied two foreign key constraints over `vb_test`.`id` as follows: 
1)  alter table `vb_test`
add constraint fk1 foreign key(id) references parent_one(id);
2)  alter table `vb_test`
add constraint fk2 foreign key(id) references parent_two(id);
Up to this, everything is fine.

Now when I switch to "Visual Builder" in QBE, I see only one line joining `vb_test`.`id` to `parent_one`.`id` in the diagram.
There is no link from `vb_test`.`id` to `parent_two`.`id`.
Is this an intended behavior or a bug ?
 
Regards, 
Ashutosh Dhundhara