mirror of
https://github.com/hasura/graphql-engine.git
synced 2025-01-08 08:44:24 +03:00
16 lines
232 B
YAML
16 lines
232 B
YAML
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
|