mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 04:51:35 +03:00
13 lines
198 B
YAML
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
|
||
|
);
|