mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 13:02:11 +03:00
15 lines
342 B
YAML
15 lines
342 B
YAML
|
type: bulk
|
||
|
args:
|
||
|
- type: mssql_run_sql
|
||
|
args:
|
||
|
source: mssql
|
||
|
sql: |
|
||
|
CREATE TABLE test(id int identity NOT NULL PRIMARY KEY);
|
||
|
create table articles(
|
||
|
id int identity NOT NULL PRIMARY KEY,
|
||
|
user_id int,
|
||
|
content text,
|
||
|
title text,
|
||
|
is_public bit default 0
|
||
|
);
|