Skip to content
This repository has been archived by the owner on Aug 5, 2021. It is now read-only.

additional postgres types + attribute name converter

Compare
Choose a tag to compare
@PhilWaldmann PhilWaldmann released this 29 Aug 18:07
· 132 commits to master since this release

The postgres store now supports all geometric data types.

There are also two new store options externalAttributeName and internalAttributeName for all stores.
Both options are optional and expect a method in the form of function(fieldName: string): string

With externalAttributeName you can convert your internal database field names into another format. e.g. from snake_case to camelCase. The conversion is up to you!
internalAttributeName should handle the opposite way.