mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 04:51:35 +03:00
d5ff1acf2d
Co-authored-by: Rikin Kachhia <54616969+rikinsk@users.noreply.github.com> GitOrigin-RevId: 1bb5bc0c4ac8109ee1d20563d23cf98e0906a483
15 lines
263 B
YAML
15 lines
263 B
YAML
type: bulk
|
|
args:
|
|
#Drop relationship first
|
|
|
|
- type: run_sql
|
|
args:
|
|
sql: |
|
|
delete from article;
|
|
SELECT setval('article_id_seq', 1, FALSE);
|
|
|
|
delete from author_detail;
|
|
|
|
delete from author;
|
|
SELECT setval('author_id_seq', 1, FALSE);
|