graphql-engine/cli/seed/testdata/seeds/authors.sql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
144 B
MySQL
Raw Normal View History

CREATE TABLE authors
(
id SERIAL PRIMARY KEY,
name TEXT
);
INSERT INTO authors(id, name)
VALUES (1, 'test1'),
(4, 'test2');