mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-16 18:42:30 +03:00
46 lines
591 B
YAML
46 lines
591 B
YAML
type: bulk
|
|
args:
|
|
|
|
- type: run_sql
|
|
args:
|
|
sql: |
|
|
drop table test_types
|
|
|
|
#Drop relationship first
|
|
- type: drop_relationship
|
|
args:
|
|
relationship: articles
|
|
table:
|
|
schema: public
|
|
name: author
|
|
|
|
- type: run_sql
|
|
args:
|
|
sql: |
|
|
drop table article
|
|
|
|
- type: run_sql
|
|
args:
|
|
sql: |
|
|
drop table author
|
|
|
|
- type: run_sql
|
|
args:
|
|
sql: |
|
|
drop table "user"
|
|
|
|
- type: run_sql
|
|
args:
|
|
sql: |
|
|
drop table person
|
|
|
|
- type: run_sql
|
|
args:
|
|
sql: |
|
|
drop type complex
|
|
|
|
- type: run_sql
|
|
args:
|
|
sql: |
|
|
drop type inventory_item
|