summaryrefslogtreecommitdiff
path: root/lib/ansible/modules/database/postgresql/postgresql_table.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ansible/modules/database/postgresql/postgresql_table.py')
-rw-r--r--lib/ansible/modules/database/postgresql/postgresql_table.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ansible/modules/database/postgresql/postgresql_table.py b/lib/ansible/modules/database/postgresql/postgresql_table.py
index 02d5538db6..6bd556eb31 100644
--- a/lib/ansible/modules/database/postgresql/postgresql_table.py
+++ b/lib/ansible/modules/database/postgresql/postgresql_table.py
@@ -473,8 +473,8 @@ def main():
including=dict(type='str'),
rename=dict(type='str'),
truncate=dict(type='bool', default=False),
- columns=dict(type='list'),
- storage_params=dict(type='list'),
+ columns=dict(type='list', elements='str'),
+ storage_params=dict(type='list', elements='str'),
session_role=dict(type='str'),
cascade=dict(type='bool', default=False),
)