docs: add reference to QualifiedTable to table args (#3880)

This commit is contained in:
Luis Fernando
2020-02-27 07:02:46 -03:00
committed by GitHub
parent 87706158b1
commit 85dae9be9f

View File

@@ -29,7 +29,10 @@ create_event_trigger
"type" : "create_event_trigger",
"args" : {
"name": "sample_trigger",
"table": "users",
"table": {
"name": "users",
"schema": "public",
},
"webhook": "https://httpbin.org/post",
"insert": {
"columns": "*",
@@ -74,8 +77,8 @@ Args syntax
- Name of the event trigger
* - table
- true
- :ref:`TableName <TableName>`
- Name of the table
- [ :ref:`QualifiedTable <QualifiedTable>` ]
- Object with table name and schema
* - webhook
- true
- String