mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-17 04:24:35 +03:00
13 lines
207 B
YAML
13 lines
207 B
YAML
|
type: bulk
|
||
|
args:
|
||
|
|
||
|
- type: mssql_run_sql
|
||
|
args:
|
||
|
source: mssql
|
||
|
sql: |
|
||
|
CREATE TABLE [user](
|
||
|
id int identity NOT NULL PRIMARY KEY,
|
||
|
name TEXT NOT NULL,
|
||
|
age INTEGER
|
||
|
);
|