mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 04:51:35 +03:00
aac64f2c81
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/1616 GitOrigin-RevId: f7eefd2367929209aa77895ea585e96a99a78d47
11 lines
202 B
YAML
11 lines
202 B
YAML
type: run_sql
|
|
args:
|
|
source: pg1
|
|
sql: |
|
|
create table author(
|
|
id serial primary key,
|
|
name text unique
|
|
);
|
|
INSERT INTO author (name)
|
|
VALUES ('Author 1'), ('Author 2');
|