graphql-engine/community/sample-apps/gatsby-postgres-graphql/migrations/1536587780064_run_sql_migration.up.yaml
2019-01-17 15:57:28 +05:30

8 lines
226 B
YAML

- args:
cascade: false
sql: |-
INSERT INTO author (name) values ('J.R.R Tolkien');
INSERT INTO author (name) values ('J.K Rowling');
INSERT INTO author (name) values ('Stephen King');
type: run_sql