mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-17 04:24:35 +03:00
25c5f97de2
We mostly want to do this to make queries against information_schema tables work, which the console cares about. information_schema tables use types like sql_identifier, which have no corresponding array types defined! Therefore, in order to generate valid queries for _in and _nin conditions, we need to treat them as their base types, instead.
16 lines
318 B
YAML
16 lines
318 B
YAML
type: bulk
|
|
args:
|
|
- type: run_sql
|
|
args:
|
|
sql: |
|
|
DROP TABLE table_with_sql_identifier;
|
|
DROP TABLE article;
|
|
DROP TABLE author;
|
|
DROP TABLE city;
|
|
DROP TABLE orders;
|
|
DROP TABLE message;
|
|
DROP TABLE uuid_test;
|
|
DROP TABLE "user";
|
|
DROP TABLE account;
|
|
cascade: true
|