mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-20 05:51:54 +03:00
4702ba514a
GitOrigin-RevId: 36ceb1852bc7779092cfb59c92035dd9635b2e3f
10 lines
182 B
YAML
10 lines
182 B
YAML
type: run_sql
|
|
args:
|
|
sql: |
|
|
CREATE TABLE authors (
|
|
id SERIAL PRIMARY KEY,
|
|
name text
|
|
);
|
|
|
|
INSERT INTO AUTHORS (name) VALUES ('J.K.Rowling'), ('Paulo Coelho');
|