mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-19 13:31:43 +03:00
27 lines
396 B
YAML
27 lines
396 B
YAML
|
type: bulk
|
||
|
args:
|
||
|
#Drop relationship first
|
||
|
- type: drop_relationship
|
||
|
args:
|
||
|
relationship: articles
|
||
|
table:
|
||
|
schema: public
|
||
|
name: author
|
||
|
|
||
|
- type: run_sql
|
||
|
args:
|
||
|
sql: |
|
||
|
drop table person
|
||
|
- type: run_sql
|
||
|
args:
|
||
|
sql: |
|
||
|
drop table orders
|
||
|
- type: run_sql
|
||
|
args:
|
||
|
sql: |
|
||
|
drop table article
|
||
|
- type: run_sql
|
||
|
args:
|
||
|
sql: |
|
||
|
drop table author
|