mirror of
https://github.com/saltstack-formulas/postgres-formula.git
synced 2025-04-16 09:40:26 +00:00
add example on how to enable extension on a db
This commit is contained in:
parent
98d39f296e
commit
7d692958ee
1 changed files with 8 additions and 0 deletions
|
@ -131,6 +131,14 @@ postgres:
|
||||||
lc_ctype: 'en_US.UTF-8'
|
lc_ctype: 'en_US.UTF-8'
|
||||||
lc_collate: 'en_US.UTF-8'
|
lc_collate: 'en_US.UTF-8'
|
||||||
tablespace: 'my_space'
|
tablespace: 'my_space'
|
||||||
|
# set custom schema
|
||||||
|
schemas:
|
||||||
|
public:
|
||||||
|
owner: 'localUser'
|
||||||
|
# enable per-db extension
|
||||||
|
extensions:
|
||||||
|
uuid-ossp:
|
||||||
|
schema: 'public'
|
||||||
|
|
||||||
# optional schemas to enable on database
|
# optional schemas to enable on database
|
||||||
schemas:
|
schemas:
|
||||||
|
|
Loading…
Add table
Reference in a new issue