mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-14 17:02:49 +03:00
docs: change quotes on getting started backend guide
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/9378 GitOrigin-RevId: c602758e97b855c759028d9945a9288ce2e42a85
This commit is contained in:
parent
608e1bf29e
commit
81d74f095a
@ -120,8 +120,8 @@ CREATE TABLE todos (
|
|||||||
ALTER TABLE "users" ADD COLUMN country VARCHAR(255);
|
ALTER TABLE "users" ADD COLUMN country VARCHAR(255);
|
||||||
|
|
||||||
INSERT INTO "users" (name, email, password, country) VALUES
|
INSERT INTO "users" (name, email, password, country) VALUES
|
||||||
('John', 'john@example.com', 'password123', "US"),
|
('John', 'john@example.com', 'password123', 'US'),
|
||||||
('Jane', 'jane@example.com', 'password456', "GB");
|
('Jane', 'jane@example.com', 'password456', 'GB');
|
||||||
|
|
||||||
INSERT INTO todos (title, description, user_id) VALUES
|
INSERT INTO todos (title, description, user_id) VALUES
|
||||||
('Buy groceries', 'Milk, eggs, bread', 1),
|
('Buy groceries', 'Milk, eggs, bread', 1),
|
||||||
|
Loading…
Reference in New Issue
Block a user