mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 04:51:35 +03:00
d9fb0f8780
* use positional arguments in SQL functions * only allow omitting set of last arguments in functions * disallow omitting of a non default argument in functions
12 lines
245 B
YAML
12 lines
245 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;
|
|
cascade: true
|