mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-17 12:31:52 +03:00
40678855d0
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/2788 Co-authored-by: David Overton <7734777+dmoverton@users.noreply.github.com> GitOrigin-RevId: f8ed9741e95b6864a48af7db338f3f619617483a
16 lines
286 B
YAML
16 lines
286 B
YAML
type: bulk
|
|
args:
|
|
- type: run_sql
|
|
args:
|
|
sql: |
|
|
CREATE TABLE "user"(
|
|
id SERIAL PRIMARY KEY,
|
|
name TEXT NOT NULL,
|
|
email TEXT NOT NULL,
|
|
is_admin BOOLEAN NOT NULL DEFAULT false
|
|
);
|
|
- type: track_table
|
|
args:
|
|
name: user
|
|
schema: public
|