mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-16 09:51:59 +03:00
abb57e58c8
</details> PR-URL: https://github.com/hasura/graphql-engine-mono/pull/3392 Co-authored-by: Divi <32202683+imperfect-fourth@users.noreply.github.com> GitOrigin-RevId: 9df6b0aa7d91f22571b72d3e467da23b916c9140
13 lines
222 B
YAML
13 lines
222 B
YAML
type: bulk
|
|
args:
|
|
|
|
- type: mssql_run_sql
|
|
args:
|
|
source: mssql
|
|
sql: |
|
|
create schema hge_tests
|
|
create table hge_tests.test_flood(
|
|
c1 int PRIMARY KEY,
|
|
c2 NVARCHAR(MAX)
|
|
);
|