我在使用 intellij 生成的数据库图中看不到连接(外键)(使用 phpstorm 6.0.3)。这是显示一些 intelij 功能的视频,并且这些人的外键可见并已链接。这是我的截图。知道为什么吗?它是一个错误吗?
这是从我的数据库复制的短表生成代码示例:
Create table Book (
id Integer Not Null Auto_increment,
Ad_id Integer Not Null,
title VarChar(150) Not Null,
isbn VarChar(80) Null,
Constraint PK_Book Primary Key (id)
);
Create table Ad (
id Integer Not Null Auto_increment,
displayed Integer Not Null,
price Integer Not Null,
inserted Integer Not Null,
Constraint PK_Ad Primary Key (id)
);
Alter table Book add (
Constraint FK_Book_1 Foreign Key (Ad_id) References Ad(id) On Update Cascade On Delete Cascade
);