mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-19 13:31:43 +03:00
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
|