mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 04:51:35 +03:00
703928de9f
GitOrigin-RevId: 757ceba2c1cdb1107ce0b0e41d2e70ac795d0d73
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
|
|
);
|