mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 21:12:09 +03:00
14 lines
223 B
YAML
14 lines
223 B
YAML
|
type: run_sql
|
||
|
args:
|
||
|
sql: |
|
||
|
CREATE TABLE "user" (
|
||
|
id serial primary key,
|
||
|
email text,
|
||
|
name text
|
||
|
);
|
||
|
CREATE TABLE users (
|
||
|
id serial primary key,
|
||
|
email text,
|
||
|
name text
|
||
|
);
|