Context: I'm using pgmodeler to propose data model/data dictionary for a project. I have a lot of fields who need a description (list form like that:
if this:
- ex 1
- ex 2
- ex 3
- ...
if that:
- ex 4
- ex 5 )
In the program it show in this format. But when I export into html file I receive this format:
"if this : - ex 1 - ex2 - ex3 - ... if that : - ex 4 - ex5"
this format is hard to read for big list, and are a source of bad feedback.
example:
format hard to read example
What I did:
- I tried to make new type (enum) but the problem is that the enum are not showing up in the html export file. (and request a new enum type for every field who need one, which is quite a lot)
What I need:
Is there a way to make the description more readable? or showing in a column the enum possibilities?
Thank you for your time
EDIT: I found a way to have a good presentation in the description column (it allows html <> so I can use strong and br to get what I want at this point). But I still need a way to show the enum (in pgmodeler or another interface for PostgreSQL)