mirror of
https://github.com/xbgmsharp/postgsail.git
synced 2025-09-17 11:17:46 +00:00
36 lines
687 B
YAML
36 lines
687 B
YAML
# Connection properties
|
|
connectionString: ${PGSAIL_DB_URI}
|
|
|
|
# Define what schemas should be used
|
|
#useAllSchemas: true
|
|
# or
|
|
schema:
|
|
- "public"
|
|
- "api"
|
|
- "auth"
|
|
|
|
# Define what tables should be used
|
|
useAllTables: true
|
|
# or
|
|
#selectedTables:
|
|
# - city
|
|
# - customer
|
|
|
|
# Additional flags
|
|
showAllConstraints: true
|
|
encloseWithMermaidBackticks: true
|
|
outputFileName: "postgsail.md"
|
|
debug: true
|
|
omitConstraintLabels: true
|
|
omitAttributeKeys: true
|
|
showDescriptions:
|
|
- enumValues
|
|
- columnComments
|
|
- notNull
|
|
showSchemaPrefix: true
|
|
schemaPrefixSeparator: "_"
|
|
|
|
# Names must match the pattern <schema><schema_prefix><table>
|
|
#relationshipLabels:
|
|
# - "public_table public_another-table : label"
|