mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 21:12:09 +03:00
e43d0273e0
Co-authored-by: Antoine Leblanc <1618949+nicuveo@users.noreply.github.com> GitOrigin-RevId: 6905d5914c8a698445c0ef03d6a8303747701e1c
14 lines
238 B
YAML
14 lines
238 B
YAML
type: bulk
|
|
args:
|
|
|
|
- type: mssql_run_sql
|
|
args:
|
|
source: mssql
|
|
sql: |
|
|
CREATE TABLE author (
|
|
id INT NOT NULL IDENTITY PRIMARY KEY,
|
|
name TEXT
|
|
);
|
|
|
|
INSERT INTO author (name) VALUES ('Bob'), ('Alice');
|