mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-17 12:31:52 +03:00
11 lines
144 B
MySQL
11 lines
144 B
MySQL
|
CREATE TABLE authors
|
||
|
(
|
||
|
id SERIAL PRIMARY KEY,
|
||
|
name TEXT
|
||
|
);
|
||
|
|
||
|
INSERT INTO authors(id, name)
|
||
|
VALUES (1, 'test1'),
|
||
|
(4, 'test2');
|
||
|
|