mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 17:31:56 +03:00
a375f8c105
https://github.com/hasura/graphql-engine-mono/pull/1692 Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> GitOrigin-RevId: fcef85910899859f7421cad554c022f8023965ea
19 lines
543 B
YAML
19 lines
543 B
YAML
type: bulk
|
|
args:
|
|
- type: run_sql
|
|
args:
|
|
sql: |
|
|
drop table if exists profiles;
|
|
drop table if exists user_profiles;
|
|
drop table if exists authors;
|
|
drop table if exists employees;
|
|
drop function if exists total_marks(students);
|
|
drop function if exists total_marks_offset(students, integer);
|
|
drop function if exists total_marks_session(students, json);
|
|
drop table if exists students;
|
|
|
|
# also drops remote relationship as direct dep
|
|
- type: remove_remote_schema
|
|
args:
|
|
name: my-remote-schema
|