mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-19 00:41:28 -07:00
postgresql modules: fix examples to use FQCN (#643)
This commit is contained in:
parent
a424ee71e3
commit
f62b8027e0
22 changed files with 138 additions and 138 deletions
|
@ -95,17 +95,17 @@ extends_documentation_fragment:
|
|||
|
||||
EXAMPLES = r'''
|
||||
- name: Create a new schema with name acme in test database
|
||||
postgresql_schema:
|
||||
community.general.postgresql_schema:
|
||||
db: test
|
||||
name: acme
|
||||
|
||||
- name: Create a new schema acme with a user bob who will own it
|
||||
postgresql_schema:
|
||||
community.general.postgresql_schema:
|
||||
name: acme
|
||||
owner: bob
|
||||
|
||||
- name: Drop schema "acme" with cascade
|
||||
postgresql_schema:
|
||||
community.general.postgresql_schema:
|
||||
name: acme
|
||||
state: absent
|
||||
cascade_drop: yes
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue