graphql-engine/server/tests-py/queries/graphql_mutation/transactions/schema_setup.yaml
Antoine Leblanc 71ae144aa6 server: implement transaction workaround
GitOrigin-RevId: 404f8bbdefb8a99b31fac75e4253daad81c8af90
2021-04-01 20:41:41 +00:00

16 lines
210 B
YAML

type: bulk
args:
- type: run_sql
args:
sql: |
create table author(
id serial primary key,
name text unique
);
- type: track_table
args:
schema: public
name: author