mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-16 01:44:03 +03:00
39 lines
558 B
YAML
39 lines
558 B
YAML
type: bulk
|
|
args:
|
|
|
|
#Drop relationships
|
|
|
|
- type: drop_relationship
|
|
args:
|
|
relationship: author_simple
|
|
table:
|
|
schema: public
|
|
name: article
|
|
|
|
- type: drop_relationship
|
|
args:
|
|
relationship: author_complex
|
|
table:
|
|
schema: public
|
|
name: article
|
|
|
|
#Drop views
|
|
- type: run_sql
|
|
args:
|
|
sql: |
|
|
drop view author_simple
|
|
- type: run_sql
|
|
args:
|
|
sql: |
|
|
drop view author_complex
|
|
|
|
#Drop tables
|
|
- type: run_sql
|
|
args:
|
|
sql: |
|
|
drop table article
|
|
- type: run_sql
|
|
args:
|
|
sql: |
|
|
drop table author
|