mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-17 12:31:52 +03:00
5bc0355bdd
GitOrigin-RevId: abd7303aaf8e7a8739fd10574249aec450082ef8
12 lines
217 B
YAML
12 lines
217 B
YAML
type: bulk
|
|
args:
|
|
|
|
- type: run_sql
|
|
args:
|
|
sql: |
|
|
CREATE TABLE users (id serial PRIMARY KEY, name text NOT NULL);
|
|
INSERT INTO users (name) VALUES ('Alyssa'), ('Ben');
|
|
|
|
- type: track_table
|
|
args: users
|