mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-19 21:41:44 +03:00
2526dd0114
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4648 GitOrigin-RevId: 5e3eb614350b047f2e2384fea9b234bf0ad9d47f
22 lines
392 B
YAML
22 lines
392 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 PRIMARY KEY,
|
|
c2 NVARCHAR(MAX)
|
|
);
|
|
|
|
- type: mssql_run_sql
|
|
args:
|
|
source: mssql
|
|
sql: |
|
|
create table [hge_tests].[User](
|
|
c1 int PRIMARY KEY,
|
|
c2 NVARCHAR(MAX)
|
|
);
|