graphql-engine/server/tests-py/queries/subscriptions/basic/schema_setup_mssql.yaml
Abby Sassel 1e45580e7c server/mssql: fix subscriptions (fixes #6887)
GitOrigin-RevId: 0d0184bd910400ea3a48a650fc61391fa8fd5518
2021-05-10 10:18:45 +00:00

13 lines
198 B
YAML

type: bulk
args:
- type: mssql_run_sql
args:
source: mssql
sql: |
create schema hge_tests
create table hge_tests.test_t1(
c1 int,
c2 text
);