graphql-engine/server/tests-py/queries/subscriptions/multiplexing/schema_setup_mssql.yaml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
342 B
YAML
Raw Normal View History

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
);