mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-20 05:51:54 +03:00
11 lines
199 B
YAML
11 lines
199 B
YAML
|
type: mssql_run_sql
|
||
|
args:
|
||
|
source: mssql1
|
||
|
sql: |
|
||
|
create table author(
|
||
|
id int,
|
||
|
name text
|
||
|
);
|
||
|
INSERT INTO author (id, name)
|
||
|
VALUES (1, 'Author 1'), (2, 'Author 2');
|