graphql-engine/server/tests-py/queries/graphql_mutation/insert/nested/schema_teardown.yaml
Philip Lykke Carlsen e1918adb52 Replace "identity column" with "column mutability" data for all backends
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/3373
GitOrigin-RevId: bf08cc9008a4b0b3ece4952528c15c45e57fc74c
2022-02-03 14:15:35 +00:00

33 lines
576 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;
drop table article cascade;
drop table author;
drop function create_author();
cascade: true