mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 13:02:11 +03:00
27 lines
462 B
YAML
27 lines
462 B
YAML
|
type: bulk
|
||
|
args:
|
||
|
- type: run_sql
|
||
|
args:
|
||
|
sql: |
|
||
|
create table hge_tests.test_t1(
|
||
|
c1 int,
|
||
|
c2 text
|
||
|
);
|
||
|
- type: track_table
|
||
|
args:
|
||
|
schema: hge_tests
|
||
|
name: test_t1
|
||
|
- type: create_event_trigger
|
||
|
args:
|
||
|
name: t1_timeout_long
|
||
|
table:
|
||
|
schema: hge_tests
|
||
|
name: test_t1
|
||
|
insert:
|
||
|
columns: "*"
|
||
|
update:
|
||
|
columns: "*"
|
||
|
delete:
|
||
|
columns: "*"
|
||
|
webhook: http://127.0.0.1:5592/timeout_long
|