mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 04:51:35 +03:00
21 lines
317 B
YAML
21 lines
317 B
YAML
|
type: bulk
|
||
|
args:
|
||
|
#Drop function first
|
||
|
- type: untrack_function
|
||
|
args:
|
||
|
name: search_posts
|
||
|
schema: public
|
||
|
|
||
|
- type: untrack_table
|
||
|
args:
|
||
|
table:
|
||
|
schema: public
|
||
|
name: post
|
||
|
|
||
|
#Drop table and function from postgres
|
||
|
- type: run_sql
|
||
|
args:
|
||
|
sql: |
|
||
|
drop table post cascade;
|
||
|
cascade: true
|