mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 13:02:11 +03:00
58cf521c62
GitOrigin-RevId: 9d9bcb82a997c1f060df5ba0726c29d934e70d71
28 lines
567 B
YAML
28 lines
567 B
YAML
type: bulk
|
|
args:
|
|
#Drop relationship first
|
|
- type: drop_relationship
|
|
args:
|
|
table:
|
|
name: author
|
|
schema: public
|
|
relationship: articles
|
|
|
|
- type: run_sql
|
|
args:
|
|
sql: |
|
|
drop table address;
|
|
drop table resident;
|
|
drop function fetch_articles(text,author);
|
|
drop table article;
|
|
drop table blog;
|
|
drop table author;
|
|
drop table "Company";
|
|
drop table computer;
|
|
drop table "user";
|
|
drop table account;
|
|
drop table leads;
|
|
drop table order_cart;
|
|
drop table items;
|
|
cascade: true
|