mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 09:22:43 +03:00
5bc0355bdd
GitOrigin-RevId: abd7303aaf8e7a8739fd10574249aec450082ef8
14 lines
248 B
YAML
14 lines
248 B
YAML
type: bulk
|
|
args:
|
|
|
|
- type: run_sql
|
|
args:
|
|
sql: |
|
|
CREATE TABLE test (id serial primary key, name text);
|
|
INSERT INTO test (name) values ('Gzip'), ('Brotli'), ('Nothing');
|
|
|
|
- type: track_table
|
|
args:
|
|
schema: public
|
|
name: test
|