mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-17 20:41:49 +03:00
15 lines
380 B
YAML
15 lines
380 B
YAML
type: bulk
|
|
args:
|
|
#Drop table and function from postgres
|
|
- type: run_sql
|
|
args:
|
|
sql: |
|
|
DROP TABLE post cascade;
|
|
DROP TABLE test cascade;
|
|
DROP TABLE integer_column cascade;
|
|
DROP TABLE "user" cascade;
|
|
DROP TABLE text_result cascade;
|
|
DROP TABLE author cascade;
|
|
DROP MATERIALIZED VIEW IF EXISTS author_mat_view cascade;
|
|
cascade: true
|