Forward engineering on mysql desktop does not work

I created an EER chart in the mysql production environment, but I cannot rebuild the chart in db and tables based on the schema and chart I created. Nothing happens when I select the forward engineer menu.

Reverse engineering work. I am sitting on a mac os Sierra machine.

thanks

+5
source share
1 answer

This is still a known, unresolved issue in MySQL Workbench 6.3.9 build 10690321 CE.

My workaround is to go to File > Export > Forward Engineer SQL CREATE script , and then create the script using one of the options in the Scripts menu (or in the terminal).

In the bug report, there is also a suggested solution by Matt Whitney that uses the Sync Model feature:

I have the same problem on Mac OS X 10.11.6. As a Partial Workaround I was able to use the "Synchronize Model" function for all my changes so far in a database that was already created. Perhaps creating an empty database and using the Synchronize Model will work for those who want the same functionality for the Forward Engineer.

+5
source

Source: https://habr.com/ru/post/1265954/


All Articles