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

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

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