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:
Rob Dominguez 2023-06-01 00:44:57 -05:00 committed by hasura-bot
parent 608e1bf29e
commit 81d74f095a

View File

@ -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),