views:

138

answers:

1

Hello,

When i use mysql workbench, the schema of reverse engineering disappears.

I don't know why.

Do you have solutions?

Thanks.

A: 

If you are reverse-engineering a MyISAM database you won't get foreign keys since they aren't supported by the engine. You must switch to InnoDB.

Álvaro G. Vicario
yes, you're right. Thanks!
garcon1986