3
0
corteza/store/settings.yaml
2020-12-01 15:45:04 +01:00

31 lines
612 B
YAML

import:
- github.com/cortezaproject/corteza-server/system/types
types:
type: types.SettingValue
filterType: types.SettingsFilter
fields:
- { field: Name, isPrimaryKey: true, lookupFilterPreprocessor: lower }
- { field: OwnedBy, isPrimaryKey: true }
- { field: Value }
- { field: UpdatedBy }
- { field: UpdatedAt }
lookups:
- fields: [ Name, OwnedBy ]
description: |-
searches for settings by name and owner
search:
enablePaging: false
enableSorting: false
rdbms:
alias: st
table: settings
customFilterConverter: true
mapFields:
OwnedBy: { column: rel_owner }