mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 21:12:09 +03:00
d5ff1acf2d
Co-authored-by: Rikin Kachhia <54616969+rikinsk@users.noreply.github.com> GitOrigin-RevId: 1bb5bc0c4ac8109ee1d20563d23cf98e0906a483
40 lines
642 B
YAML
40 lines
642 B
YAML
type: bulk
|
|
args:
|
|
#Drop relationship first
|
|
- type: drop_relationship
|
|
args:
|
|
relationship: articles
|
|
table:
|
|
schema: public
|
|
name: author
|
|
|
|
- type: drop_relationship
|
|
args:
|
|
relationship: detail_manual
|
|
table:
|
|
schema: public
|
|
name: author
|
|
|
|
- type: drop_relationship
|
|
args:
|
|
relationship: detail_fk
|
|
table:
|
|
schema: public
|
|
name: author
|
|
|
|
- type: run_sql
|
|
args:
|
|
sql: |
|
|
drop table author_detail cascade
|
|
cascade: true
|
|
- type: run_sql
|
|
args:
|
|
sql: |
|
|
drop table article cascade
|
|
cascade: true
|
|
- type: run_sql
|
|
args:
|
|
sql: |
|
|
drop table author
|
|
cascade: true
|