graphql-engine/server/tests-py/queries/remote_schemas/person_table.yaml

16 lines
232 B
YAML
Raw Normal View History

type: bulk
args:
- type: run_sql
args:
sql: |
CREATE TABLE person (
id SERIAL PRIMARY KEY,
name TEXT,
created TIMESTAMPTZ
);
- type: track_table
args:
schema: public
name: person