mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-16 01:44:03 +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
|