graphql-engine/server/tests-py/queries/subscriptions/customized_source/schema_setup_mssql.yaml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
199 B
YAML
Raw Normal View History

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');