Reverse engineer to get UML with PostgreSQL

Are there any tools to use with Postgres so that I can create UML for the database that I already created.

+4
source share
4 answers

There are some good products in Visual Paradigm, check out http://www.visual-paradigm.com/ Most of their products work with Linux, OS X, and Windows.

+2
source

You can adapt this script for MySQL http://askuml.com/blog/list-all-fields-of-all-mysql-db-tables-in-yuml-class-diagrams/ just by changing the driver from Mysql to Postgress found here http://softinnov.org/rebol/pgsql.shtml

This is the reverse enginiering sample for Wordpress DB: wp-tables-yuml.png

0
source

ppstgres_autodoc is a standard open source tool. http://www.rbt.ca/autodoc/

0
source

I used SQL Power Architect , which has a free version to do most of the tasks you need, using reverse engineering and the like. I found it easy to use and simple.

0
source

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


All Articles