mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 21:12:09 +03:00
10 lines
166 B
YAML
10 lines
166 B
YAML
|
type: mysql_run_sql
|
||
|
args:
|
||
|
source: mysql
|
||
|
sql: |
|
||
|
CREATE TABLE user(
|
||
|
id INT AUTO_INCREMENT PRIMARY KEY,
|
||
|
name TEXT NOT NULL,
|
||
|
age INTEGER
|
||
|
);
|