graphql-engine/server/tests-py/queries/logging/setup.yaml

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

19 lines
283 B
YAML
Raw Normal View History

type: bulk
args:
- type: run_sql
args:
sql: |
CREATE TABLE hello (
id SERIAL PRIMARY KEY,
code TEXT,
name TEXT
);
INSERT INTO hello VALUES
(1, 'abc', 'Some data');
- type: track_table
args:
schema: public
name: hello