You can open sakila.md to check sample output for Markdown and HTML format.
MarkdownSchemaReportWB.py tested on version 8.0.23
Sample output
HTMLSchemaReportWB8.py tested on version 8.0.23
Sample output
HTMLSchemaReport.py was tested on MysqlWorkbench version 6.3 Note this will not work on MysqlWorkbench 8.x
To Install the plugin go to Scripting / Install Plugin/Module then select HTMLShemaReport.py file and restart MySQL Workbench
Open your model and go to Tools / Catalog and select "Database schema in HTML format" and provide a file name in save dialog.
Once document has been generated you will see following message:
Then open your HTML document and see the report:
Finally I want to thank all readers for their contributions, specially to Rodrigo Schmidt who started script python.
References http://tmsanchezdev.blogspot.com/2015/03/html-report-from-mysqlworkbench-6x.html
MySQLWorkbench allows to design database model easily and also provides an option to generate the SQL script. By default script is generated for MySQL, but, what if you need to generate a SQL script for FirebirdSQL?.
Using Python you cand create custom plugins to access to model properties (table and columns definitions for example) please visit this link for more info Scripting and Plugin Development
So, I decided to write a plugin to generate a SQL Script for FirebirdSQL. My goal it's just to show how can we access to schemas, tables and columns properties using classes already defined by MySQLWorkbench.
You can read more at http://tmsanchezdev.blogspot.mx/2017/04/generating-script-for-firebirdsql-from.html