mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-17 20:41:49 +03:00
1afa4ac3cc
Co-authored-by: Vladimir Ciobanu <1017953+vladciobanu@users.noreply.github.com> Co-authored-by: Antoine Leblanc <1618949+nicuveo@users.noreply.github.com> Co-authored-by: Ikechukwu Eze <22247592+iykekings@users.noreply.github.com> Co-authored-by: Philip Lykke Carlsen <358550+plcplc@users.noreply.github.com> Co-authored-by: Phil Freeman <630306+paf31@users.noreply.github.com> GitOrigin-RevId: 1b964fe5f5f50380172cb702b6a328fed782b6b7
22 lines
536 B
YAML
22 lines
536 B
YAML
type: bulk
|
|
args:
|
|
|
|
# first, drop functions to avoid 'cannot drop due to the following dependent objects' error.
|
|
- type: citus_run_sql
|
|
args:
|
|
source: citus
|
|
sql: |
|
|
drop function search_disasters_sql;
|
|
drop function search_disasters_plpgsql;
|
|
|
|
- type: citus_run_sql
|
|
args:
|
|
source: citus
|
|
sql: |
|
|
drop table article cascade;
|
|
drop table author cascade;
|
|
drop table country cascade;
|
|
drop table state cascade;
|
|
drop table disaster cascade;
|
|
drop table disaster_affected_state cascade;
|