mirror of
https://github.com/hasura/graphql-engine.git
synced 2025-01-05 22:34:22 +03:00
22 lines
318 B
YAML
22 lines
318 B
YAML
type: bulk
|
|
args:
|
|
- type: run_sql
|
|
args:
|
|
sql: |
|
|
CREATE TABLE hello (
|
|
id SERIAL PRIMARY KEY,
|
|
code TEXT,
|
|
name TEXT
|
|
);
|
|
|
|
- type: run_sql
|
|
args:
|
|
sql: |
|
|
INSERT INTO hello VALUES
|
|
(1, 'abc', 'Some data');
|
|
|
|
- type: track_table
|
|
args:
|
|
schema: public
|
|
name: hello
|